Skip to content

Instantly share code, notes, and snippets.

@gilesbradshaw
Created January 22, 2019 13:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gilesbradshaw/0c7131ee8a68aaff2450c1052b2d23e1 to your computer and use it in GitHub Desktop.
Save gilesbradshaw/0c7131ee8a68aaff2450c1052b2d23e1 to your computer and use it in GitHub Desktop.
composes functions
export default (...functions) =>
param =>
functions
.reduce(
(acc, func) => func(acc),
param,
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment