Skip to main content
Module

x/rambda/source/construct.js

Faster and smaller alternative to Ramda
Latest
File
export function construct(foo, bar) { if (arguments.length === 1){ return (_bar) => construct(foo, _bar); }
return}