Skip to content

Instantly share code, notes, and snippets.

@davidostermann
Created October 19, 2017 11:59
Show Gist options
  • Save davidostermann/69e7f744bc63b113cf86e8e7257dca92 to your computer and use it in GitHub Desktop.
Save davidostermann/69e7f744bc63b113cf86e8e7257dca92 to your computer and use it in GitHub Desktop.
pipe function
const _pipe = (f, g) => (...args) => g(f(...args))
export const pipe = (...fcts) => fcts.reduce(_pipe)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment