Skip to content

Instantly share code, notes, and snippets.

@manavm1990
Created November 25, 2021 14:33
Show Gist options
  • Save manavm1990/f6cdc7cb939850feb6b316423725b08c to your computer and use it in GitHub Desktop.
Save manavm1990/f6cdc7cb939850feb6b316423725b08c to your computer and use it in GitHub Desktop.
As seen in the πŸ“– Composing Software by Eric Elliott
const buildPipeline =
(...fns) =>
(x) =>
fns.reduce((accV, fxn) => fxn(accV), x);
@manavm1990
Copy link
Author

TODO: Add TS version

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment