Skip to content

Instantly share code, notes, and snippets.

@bpinedah
Last active December 19, 2018 16:11
Show Gist options
  • Save bpinedah/0e81d54c9580a5f1622e364962390ed9 to your computer and use it in GitHub Desktop.
Save bpinedah/0e81d54c9580a5f1622e364962390ed9 to your computer and use it in GitHub Desktop.
Pipes article
const pipeP = (...fns) => (
fns.reduce((f, g) => x => f(x).then(g))
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment