UNPKG
fj-maybe
Version:
latest (1.0.0)
1.0.0
mayBe monad.
github.com/fj-js/fj-maybe
fj-js/fj-maybe
fj-maybe
/
index.js
12 lines
(11 loc)
•
201 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
"use strict"
;
module
.
exports
= {
"return"
:
function
_return
(
value
) {
return
value; },
bind
:
function
bind
(
value, f
) {
if
(value ==
null
) {
return
null
; }
return
f
(value); } };