Skip to main content
Module

x/rambda/source/constructN.js

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