Skip to content

Instantly share code, notes, and snippets.

@pietrom
Last active January 3, 2018 11:54
Show Gist options
  • Select an option

  • Save pietrom/065a5040ef4cf0d3ec7596f011181e17 to your computer and use it in GitHub Desktop.

Select an option

Save pietrom/065a5040ef4cf0d3ec7596f011181e17 to your computer and use it in GitHub Desktop.
JS function providing functional 'option' capabilities
function option(x) {
return {
map: function(f) {
return x ? option(f(x)) : option()
},
valueOr: function(d) {
return x || d
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment