Skip to main content
Module

x/rambda/src/gte.js

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