Created
April 26, 2023 17:05
-
-
Save adeleke5140/f9d82613a5becb82f99032e9ca18e2f0 to your computer and use it in GitHub Desktop.
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) => x => fns.reduceRight((y, f) => f(y), vx) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment