Skip to main content
Module

x/rambda/source/binary.js

Faster and smaller alternative to Ramda
Latest
File
export function binary(fn){ if (fn.length <= 2) return fn
return (a, b) => fn(a, b)}