Collection of sort comparator functions.
A comparator that sorts according to the "natural" order. First by type, then by string or numerical ordering if a string, number, boolean, or symbol.
A comparator that does not alter the sort order. It regards everything as equal, and thus Javascript's stable sort leaves the ordering unchanged.
0
A higher-order function that returs a sort function.
a comparator
a sort function that sorts a list according to cmp
A comparator that sorts according to the "natural" order. First by type, then by string or numerical ordering if a string, number, boolean, or symbol.
A function that sorts according to natural order. See naturalCMP.
a copy of list in sorted order.
A comparator that does not alter the sort order. It regards everything as equal, and thus Javascript's stable sort leaves the ordering unchanged.
0
Generated using TypeDoc
Sorting routines