Skip to main content
Module

x/rambda/src/divide.js

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