ix
Version:
The Interactive Extensions for JavaScript
14 lines (12 loc) • 309 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.sorter = void 0;
/**
* @ignore
*/
function sorter(fst, snd) {
// eslint-disable-next-line no-nested-ternary
return fst > snd ? 1 : fst < snd ? -1 : 0;
}
exports.sorter = sorter;
//# sourceMappingURL=sorter.js.map