forked from staltz/frontmen-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path41-example.js
More file actions
38 lines (32 loc) · 699 Bytes
/
Copy path41-example.js
File metadata and controls
38 lines (32 loc) · 699 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
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'
}
}
};
// Use chain to pick obj.address.street.num