Skip to content

Instantly share code, notes, and snippets.

@andresgcarmona
Created January 24, 2023 19:03
Show Gist options
  • Save andresgcarmona/c36781ecbc2a9932cca4a3388483882a to your computer and use it in GitHub Desktop.
Save andresgcarmona/c36781ecbc2a9932cca4a3388483882a to your computer and use it in GitHub Desktop.
Javascript pipe function
const pipe = (...fns) => input => fns.reduce(
(acc, fn) => fn(acc), input
)
const formatString = pipe(toUpperCase, removeSpaces, addExclamation)
formatString('Hello World') // HELLOWORLD!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment