-
-
Save laser/f60172b8037f9f19adfb to your computer and use it in GitHub Desktop.
j
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function partial(fx) { | |
var firstArgs = Array.prototype.slice.call(arguments, 1); | |
return function fx2() { | |
var secondArgs = Array.prototype.slice.call(arguments, 0); | |
return fx.apply(null, firstArgs.concat(secondArgs)); | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment