Skip to content

Instantly share code, notes, and snippets.

@luan0ap
Created June 5, 2018 18:29
Show Gist options
  • Save luan0ap/1b10966d694751fdca45ef66bc47b726 to your computer and use it in GitHub Desktop.
Save luan0ap/1b10966d694751fdca45ef66bc47b726 to your computer and use it in GitHub Desktop.
ordenate execution functions
export const pipe = (...fns) => initial => fns.reduce((acc, fn) => fn(acc), initial)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment