Skip to content

Instantly share code, notes, and snippets.

@lowderdev
Created January 16, 2020 14:41
Show Gist options
  • Save lowderdev/6eaed1dba544de1984d31e84df9a6f39 to your computer and use it in GitHub Desktop.
Save lowderdev/6eaed1dba544de1984d31e84df9a6f39 to your computer and use it in GitHub Desktop.
function apply(x, fn) {
return fn(x);
}
function pipe(...functions) {
function newFunction(value) {
return functions.reduce(apply, value);
}
return newFunction;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment