Skip to content

Instantly share code, notes, and snippets.

@idettman
Created March 9, 2017 00:24
Show Gist options
  • Save idettman/1e90bc345d4d22e5519f298cb77df758 to your computer and use it in GitHub Desktop.
Save idettman/1e90bc345d4d22e5519f298cb77df758 to your computer and use it in GitHub Desktop.
ES6 B Combinators: Compose and Pipe
const compose = (a, b) => c => a(b(c))
const pipe = (a, b) => c => b(a(c))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment