Skip to content

Instantly share code, notes, and snippets.

@DubiousS
Created April 29, 2019 10:02
Show Gist options
  • Save DubiousS/a5fb1c85dee46907a4b58a925b9c47b8 to your computer and use it in GitHub Desktop.
Save DubiousS/a5fb1c85dee46907a4b58a925b9c47b8 to your computer and use it in GitHub Desktop.
const compose = (...functions) => {
return (...args) => {
let result = functions[functions.length - 1](...args);
for(let i = functions.length - 2; i >= 0; i--) {
result = functions[i](result)
}
return result;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment