Skip to content

Instantly share code, notes, and snippets.

@batur
Created June 29, 2023 10:36
Show Gist options
  • Save batur/316065a7c4f550273176bdf2867130d7 to your computer and use it in GitHub Desktop.
Save batur/316065a7c4f550273176bdf2867130d7 to your computer and use it in GitHub Desktop.
Compose Function in JS
const compose = (...fns) => x => fns.reduceRight((v, f) => f(v), x);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment