Repository URL to install this package:
Version:
6.0.0-beta.8 ▾
|
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const compareByLength = (a, b) => {
// ASC -> a.length - b.length
// DESC -> b.length - a.length
return b.length - a.length;
};
exports.compareByLength = compareByLength;
exports.default = compareByLength;
//# sourceMappingURL=compareByLength.js.map