Created
September 3, 2018 13:02
-
-
Save e-mihaylin/615f6252e1aacfab7a47439a8e1a4551 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
const chained = f => x => f.reduce((r, f) => f(r), x); | |
// chained([a,b,c,d])(input) | |
// yields the same result as: | |
// d(c(b(a(input)))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment