Skip to content

Instantly share code, notes, and snippets.

@collardeau
Last active October 23, 2015 19:44
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 collardeau/071c9b5fa3122bba3069 to your computer and use it in GitHub Desktop.
Save collardeau/071c9b5fa3122bba3069 to your computer and use it in GitHub Desktop.
const getFirstName = maybeName => maybeName.fmap(name => name.split(" ")[1]);
const getFirstLetter = maybeString => maybeString.fmap(string => string[0]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment