Guest User

Untitled

a guest
Oct 17th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. var currier = function(fn) {
  2. var args = Array.prototype.slice.call(arguments, 1);
  3.  
  4. return function() {
  5. return fn.apply(this, args.concat(
  6. Array.prototype.slice.call(arguments, 0)));
  7. };
  8. };
Add Comment
Please, Sign In to add comment