Skip to content

Instantly share code, notes, and snippets.

@Pengeszikra
Created July 22, 2019 10:31
Show Gist options
  • Save Pengeszikra/c6c3d669f80b5365c88e6e00fc65ddd5 to your computer and use it in GitHub Desktop.
Save Pengeszikra/c6c3d669f80b5365c88e6e00fc65ddd5 to your computer and use it in GitHub Desktop.
simple pipe implementation
export default (inner, ...outers) => outers.reduce((result, calc) => calc(result), inner);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment