-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfn.js
239 lines (218 loc) · 4.7 KB
/
fn.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
/**
* @example
* condShort(
* [1 == 2, "a"],
* [3 == 6-3, "b"],
* [true, "default"],
* ) == "b"
*
* @summary
* return first case[1] where case[0] is true
*/
function condShort(...cases) {
for (const c in cases) {
if (cases[c][0] === true) {
return cases[c][1]
}
}
throw new Error("No default was provided")
}
/**
* provide syntax highlighting in IDE for a code example
* should compile to nothing after dead code elimination
*
* (has better syntax highlighting than jsdoc's example)
*
* TODO: check if it's eliminated, maybe add a build plugin
*/
function codeDoc(dummyArgs) {
return;
}
/**
* not undefined:
* array.every(x => x !== undefined)
*/
function isnun(...array) {
return array.every(x => x !== undefined)
}
/**
* not null:
* array.every(x => x !== null)
*/
function isnn(...array) {
return array.every(x => x !== null)
}
/**
* is defined:
* @example
* array.every(x => x !== undefined && x !== null && !isNaN(x))
*/
function isdef(...array) {
return array.every(x => x !== undefined && x !== null && !isNaN(x))
}
/**
* first defined:
* @example
* firstDef(NaN, null, 5, 7) == 5
*/
function firstDef(...array) {
for(const i in array){
if(isdef(array[i])){
return array[i]
}
}
return undefined
}
/**
* @example
* (
* { a: 99, b: null, c: undefined },
* { a: 1, b: 2, c: 3 }
* ) =>
* { a: 99, b: null, c: 3 }
*/
function defaultsFor(object, defaults) {
for (const key in defaults) {
if (object[key] === undefined) {
object[key] = defaults[key]
}
}
}
/**
* @example
* value ?? defaultValue // but only for undefined
*/
function defaultValue(value, defaultValue) {
if (value === undefined) {
return defaultValue
} else {
return value
}
}
/**
* @example
* for(const x of slice([10, 11, 12, 13], 2, 3))
* // x is 12, 13
* @summary
* create a view over const array (without copying like Array.slice)
* both indexes are INCLUSIVE
* negative values are calculated from the end
*/
function* slice(array, startIndex, endIndex) {
if (startIndex < 0) {
startIndex = Math.Max(0, array.length + startIndex)
}
if (endIndex < 0) {
endIndex = Math.Max(0, array.length + endIndex)
}
for (let i = startIndex; i <= endIndex; i++) {
yield array[i]
}
}
/**
* @example
* for (const x of
* weave([10, 11, 12, 13], (l, r) => l+r == 23, (l, r, index) => index)
* )
* // x is 10, 11, 1, 12, 13
*
* @summary
* create iterable view over const array
* inserting element(left, right, index)
* between left and right
* where condition(left, right)
*
* left and right will be *undefined* for first/last position
*
* given [..., 3, 4, ...]
* where condition(3,4) == true => [..., 3, element(3,4), 4, ...]
* where condition(3,4) == false => [..., 3, 4, ...]
*/
function* weave(array, condition, element) {
const startIndex = 0
const endIndex = array.length - 1
if (condition(undefined, array[0], -1)) {
yield element(undefined, array[0], -1)
}
for (let i = startIndex; i <= endIndex; i++) {
yield array[i]
if (condition(array[i], array[i + 1], i)) {
yield element(array[i], array[i + 1], i)
}
}
}
/**
* @example
* PATH.a.b.c.d() returns ['a','b','c','d']
*/
const PATH = new Proxy(
{},
{
get(target, prop) {
return new Proxy(
{},
{
accumulator: [prop],
get(target, prop) {
accumulator.push(prop)
return this
},
apply(target, thisArg, args) {
return this.accumulator
},
}
)
}
}
)
/**
* @example
* getPath(x, ['a','b','c','d']) returns x.a.b.c.d
*/
function getPath(object, keys) {
let res = object
for (const key in keys) {
res = res[key]
}
return res
}
/**
* @example
* setPath(x, ['a','b','c','d'], value) sets x.a.b.c.d = value
*/
function setPath(object, keys, value) {
let res = object
for (const key of slice(keys, 0, -2)) {
res = res[key]
}
return res[keys.at(-1)]
}
/**
* @example
* pipe(x, doA, doB, doC) ==
* doC( doB( doA( x )))
*/
function pipe(x, ...transformations) {
for (const func of transformations) {
x = func(x)
}
return x
}
/**
* @example
* res = inheritFrom({a:33}, {a:0, b:0})
*
* res.a === 33
* res.b === 0
* res.b = 71
* // => the parent object doesn't change
* @summary
* parents will be searched reccursively
*/
function inheritFrom(obj, objRef) {
// should be more efficient than a custom Proxy
// it's enough for inheriting from one parent object
Object.setPrototypeOf(obj, objRef)
return obj
}
export default { condShort, codeDoc, isnun, isnn, isdef, firstDef, defaultsFor, defaultValue, slice, weave, PATH, getPath, setPath, pipe, inheritFrom }