Created
November 24, 2017 19:13
-
-
Save ecancino/03a13c67f509bf80b38d207769140f65 to your computer and use it in GitHub Desktop.
Compose
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
| export const compose = (...fs) => fs.reduce((a, f) => (...as) => f(a(...as)), x => x) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment