UNPKG

@thi.ng/compare

Version:

Comparators with support for types implementing the @thi.ng/api/ICompare interface

7 lines (6 loc) 165 B
const compareLengthAsc = (a, b) => a.length - b.length; const compareLengthDesc = (a, b) => b.length - a.length; export { compareLengthAsc, compareLengthDesc };