Given a list of strings, return a new list with the strings sorted in ascending order by their lengths. If two strings have the same length, preserve their original order.
['banana', 'apple', 'kiwi', 'orange', 'pear']['kiwi', 'pear', 'apple', 'banana', 'orange']