Skip to content

Instantly share code, notes, and snippets.

@venomnert
Created June 30, 2017 22:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save venomnert/01f9c0f9657fb7f391ee1f81e5a42f05 to your computer and use it in GitHub Desktop.
Save venomnert/01f9c0f9657fb7f391ee1f81e5a42f05 to your computer and use it in GitHub Desktop.
const pipe = (op1, op2) => {
return (arg) => {
const result1 = op1(arg);
return op2(result1);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment