Skip to content

Instantly share code, notes, and snippets.

@o0
Last active November 23, 2016 02:21
Show Gist options
  • Save o0/7028a339e27a292d075d1be9b1b823cb to your computer and use it in GitHub Desktop.
Save o0/7028a339e27a292d075d1be9b1b823cb to your computer and use it in GitHub Desktop.
Maybe monad. Requires monet.js library
const user = {
lang: {
current: 'ru'
}
};
const userDefaultLang = Maybe
.fromNull(user.lang.default)
.orElse(Some('en'))
.val;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment