UNPKG

rambdax

Version:

Extended version of Rambda - a lightweight, faster alternative to Ramda

6 lines (5 loc) 108 B
export function comparator(fn){ return function (a, b){ return fn(a, b) ? -1 : fn(b, a) ? 1 : 0 } }