Skip to content

Instantly share code, notes, and snippets.

@DanShappir
Created November 1, 2020 09:55
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DanShappir/183ff87e78ce6b6f2fdf85b1470aab5a to your computer and use it in GitHub Desktop.
Save DanShappir/183ff87e78ce6b6f2fdf85b1470aab5a to your computer and use it in GitHub Desktop.
Implementation of piping function
function pipe(arg, ...fns) {
return fns.reduce((v, fn) => fn(v), arg);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment