Skip to content

Instantly share code, notes, and snippets.

View RSNara's full-sized avatar

Ramanpreet Nara RSNara

  • Facebook
View GitHub Profile
@RSNara
RSNara / functional.js
Last active October 4, 2015 07:43
Just a short implementation of curry and compose.
var _ = (function() {
var _ = {
curry: curry,
compose: compose
};
return _;
function realArgumentCount(unreal, args) {