Skip to content

Instantly share code, notes, and snippets.

@JaeYeopHan
Created February 26, 2018 01:52
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 JaeYeopHan/d2fc84e202852811daaf8da3106613d7 to your computer and use it in GitHub Desktop.
Save JaeYeopHan/d2fc84e202852811daaf8da3106613d7 to your computer and use it in GitHub Desktop.
JavaScript functions - pipe
export function pipe(...fns) {
return param => fns.reduce(
(result, fn) => fn(result),
param
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment