UNPKG

rambda

Version:

Lightweight faster alternative to Ramda

6 lines (4 loc) 107 B
export function min(x, y){ if (arguments.length === 1) return _y => min(x, _y) return y < x ? y : x }