Skip to content

Instantly share code, notes, and snippets.

@dbauszus-glx
Created August 21, 2022 10:43
Show Gist options
  • Save dbauszus-glx/3d477f10c97e3195807d3759db9992e0 to your computer and use it in GitHub Desktop.
Save dbauszus-glx/3d477f10c97e3195807d3759db9992e0 to your computer and use it in GitHub Desktop.
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