Skip to content

Comment on Curried JavaScript functionsparent

Comments

Yeah, it is a bit awkward. After reading this article a few years back, I wrote a simpler implementation of curry that transforms the function itself, rather than being called from within it, e.g.

  var add = curry(function(a,b,c) { return a + b + c; });
You can find the code at http://ianhenderson.org/curry.js if you're interested.
AboutSource Built by g1lg1l

Hackerly is an independent reader for Hacker News, built on the public HN API. Not affiliated with Y Combinator.