Skip to main content
Module

x/rambda/multiply.js

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