Skip to content

Instantly share code, notes, and snippets.

@suissa
Created October 21, 2017 06:21
Show Gist options
  • Save suissa/090fa353dc8134881344ec1b27316a58 to your computer and use it in GitHub Desktop.
Save suissa/090fa353dc8134881344ec1b27316a58 to your computer and use it in GitHub Desktop.
const compose = (...fns ) => fns.reduce( ( f, g ) => (...args ) => f( g(...args ) ) )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment