Sorts a List based on the given property Usage :
a = [{a : 1, b: 2}, {a : 2, b: 1}]; b = a.sort(dynamicSort('b')) b => [{a : 2, b: 1}, {a : 1, b: 2}]
Property Name / Path to Sort the List
Generated using TypeDoc
Sorts a List based on the given property Usage :
Export
Returns