Skip to content

Instantly share code, notes, and snippets.

@collardeau
Last active October 23, 2015 19:43
Show Gist options
  • Save collardeau/25165de05064df18d546 to your computer and use it in GitHub Desktop.
Save collardeau/25165de05064df18d546 to your computer and use it in GitHub Desktop.
// Standalone ES6 composition mentions "person" twice
const getFirstInitial = person => getFirstLetter(getFirstName(person))
// vs. Ramda's pipe composition
const firstInitial = pipe(getFirstName, getFirstLetter);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment