UNPKG

ix

Version:

The Interactive Extensions for JavaScript

10 lines (8 loc) 190 B
/** * @ignore */ export function sorter(fst, snd) { // eslint-disable-next-line no-nested-ternary return fst > snd ? 1 : fst < snd ? -1 : 0; } //# sourceMappingURL=sorter.mjs.map