Skip to content

Instantly share code, notes, and snippets.

@olegakbarov
Created May 17, 2015 08:35
Show Gist options
  • Save olegakbarov/f0e4aecee80e170cfcab to your computer and use it in GitHub Desktop.
Save olegakbarov/f0e4aecee80e170cfcab to your computer and use it in GitHub Desktop.
ivan
var curry = function (fn) {
var slice = [].slice,
args = slice.call(arguments, 1);
return function () {
return fn.apply(this, args.concat(slice.call(arguments)));
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment