Last active
October 23, 2015 19:44
-
-
Save collardeau/071c9b5fa3122bba3069 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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