Skip to content

Commit 9e96201

Browse files
Fix for Angular production build
1 parent f97fcec commit 9e96201

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sort-by.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export default function sortBy(array, parser) {
4747
// decorate the array
4848
array[i] = [].concat(
4949
normalizeString(parser.call(null, item, i)),
50-
item,
50+
item
5151
);
5252
}
5353
// console.log('decorated:', JSON.stringify(array));

0 commit comments

Comments
 (0)