Created
March 5, 2018 10:54
-
-
Save veggiemonk/9bb0d82d9590a38b39e5f22a282e38fd to your computer and use it in GitHub Desktop.
Javascript snippets
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
| const pipe = (...fns) => x => fns.reduce((acc, fn) => fn(acc), x); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment