Created
August 21, 2022 10:43
-
-
Save dbauszus-glx/3d477f10c97e3195807d3759db9992e0 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 compose = (...fns) => { | |
return arg => fns.reduce((acc, fn) => { | |
return fn(acc); | |
}, arg) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment