Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit d317e1e

Browse files
fix(orderBy): ensure correct ordering with arrays of objects and no predicate
By refactoring to use a Schwartzian transform, we can ensure that objects with no custom `toString` or `toValue` methods are just ordered using their position in the original collection. Closes #11866 Closes #11312 Closes #4282
1 parent 055189c commit d317e1e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

test/ng/filter/orderBySpec.js

+5
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,11 @@ describe('Filter: orderBy', function() {
189189
it('should sort array of arrays as Array.prototype.sort', function() {
190190
expect(orderBy([['one'], ['two'], ['three']])).toEqualData([['one'], ['three'], ['two']]);
191191
});
192+
193+
194+
it('should sort mixed array of objects and values in a stable way', function() {
195+
expect(orderBy([{foo: 2}, {foo: {}}, {foo: 3}, {foo: 4}], 'foo')).toEqualData([{foo: 2}, {foo: 3}, {foo: 4}, {foo: {}}]);
196+
})
192197
});
193198

194199

0 commit comments

Comments
 (0)