forked from staltz/frontmen-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path42-example.js
More file actions
46 lines (38 loc) · 880 Bytes
/
42-example.js
File metadata and controls
46 lines (38 loc) · 880 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
class Maybe {
constructor(val, nothing) {
this.nothing = nothing ? true : false;
this.value = nothing ? null : val;
}
static of(val) {
return new Maybe(val);
}
static nothing() {
return new Maybe(null, true);
}
map(fn) {
return this.nothing ? this : new Maybe(fn(this.value));
}
chain(valToMaybe) {
return this.nothing ? this : valToMaybe(this.value);
}
}
const obj = {
address:
Math.random() < 0.5
? null
: {
street:
Math.random() < 0.5
? null
: {
num: Math.random() < 0.5 ? null : '17'
}
}
};
const prop = field => x => (x[field] ? Maybe.of(x[field]) : Maybe.nothing());
const num = Maybe.of(obj)
.chain(prop('address'))
.chain(prop('street'))
.chain(prop('num'))
.map(x => '#' + x);
console.log(num.value);