Skip to content

Instantly share code, notes, and snippets.

@adeleke5140
Created April 26, 2023 17:05
Show Gist options
  • Save adeleke5140/f9d82613a5becb82f99032e9ca18e2f0 to your computer and use it in GitHub Desktop.
Save adeleke5140/f9d82613a5becb82f99032e9ca18e2f0 to your computer and use it in GitHub Desktop.
function composition
const compose = (...fns) => x => fns.reduceRight((y, f) => f(y), vx)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment