-
Notifications
You must be signed in to change notification settings - Fork 0
/
maybe.js
114 lines (92 loc) · 1.96 KB
/
maybe.js
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
const valSym = Symbol('val')
class Maybe {
constructor (val) {
this[valSym] = val
}
static fromNullable (x) {
if (x === null || x === undefined) {
return Maybe.Nothing()
} else {
return Maybe.Just(x)
}
}
static fromNested (obj, path) {
let current = obj
for (const segment of path) {
if (typeof current !== 'object' || current === null) {
return Maybe.Nothing()
}
if (typeof segment === 'number') {
current = Array.from(current)[segment]
} else {
current = current[segment]
}
}
return Maybe.fromNullable(current)
}
/**
* Combine multiple Maybes into a single Maybe that is a Just iff all input Maybes are Just and Nothing otherwise
*
* @param {Array<Maybe<T>>} maybes Array of maybes to combine
* @return {Maybe<Array<T>>} Maybe that will either be a Nothing or a Just with an array of all values from input
* Maybes
*/
static all (maybes) {
return maybes.reduce((lastChain, maybe) =>
lastChain.flatMap(prevVals => maybe.map(nextVal => ([...prevVals, nextVal]))),
Maybe.Just([]))
}
static Nothing () {
return new Nothing()
}
static Just (val) {
return new Just(val)
}
}
class Just extends Maybe {
map (fn) {
return Maybe.Just(fn(this[valSym]))
}
flatMap (fn) {
return fn(this[valSym])
}
orElse () {
return this
}
filter (fn) {
return fn(this[valSym]) ? this : Maybe.Nothing()
}
get () {
return this[valSym]
}
getOrElse () {
return this[valSym]
}
* [Symbol.iterator] () {
yield this.get()
}
}
class Nothing extends Maybe {
map () {
return Maybe.Nothing()
}
flatMap () {
return Maybe.Nothing()
}
orElse (fn) {
fn()
return Maybe.Nothing()
}
filter () {
return Maybe.Nothing()
}
get () {
return undefined
}
getOrElse (otherwise) {
return otherwise
}
* [Symbol.iterator] () {
}
}
module.exports = Maybe