Skip to content

Instantly share code, notes, and snippets.

@ccorcos
Created March 2, 2017 04:39
Show Gist options
  • Save ccorcos/6567d23cc28253abb2916ab2cf9c8dcb to your computer and use it in GitHub Desktop.
Save ccorcos/6567d23cc28253abb2916ab2cf9c8dcb to your computer and use it in GitHub Desktop.
char('a')
.map(v => v.toUpperCase())
.run('a')
.fold(
v => console.log('success', v)
e => console.log('error', e)
)
// => success A
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment