Skip to content

Instantly share code, notes, and snippets.

@veggiemonk
Created March 5, 2018 10:54
Show Gist options
  • Select an option

  • Save veggiemonk/9bb0d82d9590a38b39e5f22a282e38fd to your computer and use it in GitHub Desktop.

Select an option

Save veggiemonk/9bb0d82d9590a38b39e5f22a282e38fd to your computer and use it in GitHub Desktop.
Javascript snippets
const pipe = (...fns) => x => fns.reduce((acc, fn) => fn(acc), x);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment