Skip to content

Instantly share code, notes, and snippets.

@3v0k4
Last active December 21, 2019 00:07
Show Gist options
  • Select an option

  • Save 3v0k4/d951b7564d161caa64690173dd814af9 to your computer and use it in GitHub Desktop.

Select an option

Save 3v0k4/d951b7564d161caa64690173dd814af9 to your computer and use it in GitHub Desktop.
// upper :: String -> String
const upper = s => s.toUpperCase()
// shout :: String -> String
const shout = s => s.concat('!')
// format :: String => Either(String)
const format = s =>
Right(s)
.map(upper)
.map(exclame)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment