Created
September 9, 2017 15:01
-
-
Save sanbornhilland/a24b966c2b9da487ea8ab2a491890f53 to your computer and use it in GitHub Desktop.
ES6 Partial Application
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 partiallyApply (...args) { | |
| const func = args.shift() | |
| return (...otherArgs) => func(...args, ...otherArgs) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment