Created
January 16, 2020 14:41
-
-
Save lowderdev/6eaed1dba544de1984d31e84df9a6f39 to your computer and use it in GitHub Desktop.
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 apply(x, fn) { | |
return fn(x); | |
} | |
function pipe(...functions) { | |
function newFunction(value) { | |
return functions.reduce(apply, value); | |
} | |
return newFunction; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment