Skip to main content
Module

x/rambda/min.js

Faster and smaller alternative to Ramda
Go to Latest
File
export function min(x, y){ if (arguments.length === 1) return _y => min(x, _y)
return y < x ? y : x}