Last active
December 19, 2018 16:11
-
-
Save bpinedah/0e81d54c9580a5f1622e364962390ed9 to your computer and use it in GitHub Desktop.
Pipes article
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 pipeP = (...fns) => ( | |
fns.reduce((f, g) => x => f(x).then(g)) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment