Skip to main content
Module

x/rambda/source/subtract.js

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