Skip to content

Instantly share code, notes, and snippets.

@gvergnaud
Created January 10, 2016 11:19
Show Gist options
  • Save gvergnaud/ea87af8517198755b7ff to your computer and use it in GitHub Desktop.
Save gvergnaud/ea87af8517198755b7ff to your computer and use it in GitHub Desktop.
export default class Const {
constructor(v) {
this.value = v
}
static of(v) {
return new Const(v)
}
get() {
return this.value
}
map(_) {
return Const.of(this.value)
}
}
export const getConst = c => c.get()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment