Created
April 13, 2017 13:19
-
-
Save kalisjoshua/533ba85e2c262607b624d6a521b1a783 to your computer and use it in GitHub Desktop.
JavaScript function composition.
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 compose = (...fns) => | |
fns.reduceRight((g, f) => (...args) => f(g(...args))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment