Skip to main content
Module

x/rambda/source/lte.js

Faster and smaller alternative to Ramda
Go to Latest
File
export function lte(a, b){ if (arguments.length === 1) return _b => lte(a, _b)
return a <= b}