UNPKG

190 BJavaScriptView Raw
1/**
2 * @ignore
3 */
4export function sorter(fst, snd) {
5 // eslint-disable-next-line no-nested-ternary
6 return fst > snd ? 1 : fst < snd ? -1 : 0;
7}
8
9//# sourceMappingURL=sorter.mjs.map