Created
May 2, 2019 07:18
-
-
Save anthify/aa459f1980fa9293cd3aa9aeeeb48b80 to your computer and use it in GitHub Desktop.
Pipe function
This file contains 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 default (...fns) => x => fns.reduce((v, f) => f(v), x); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment