Skip to main content
Module

x/rambda/source/comparator.js

Faster and smaller alternative to Ramda
Latest
File
export function comparator(fn){ return function (a, b){ return fn(a, b) ? -1 : fn(b, a) ? 1 : 0 }}