alienese 0.5.2 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/alienese.js +782 -369
- package/package.json +2 -2
package/alienese.js
CHANGED
|
@@ -26,13 +26,13 @@ SOFTWARE.
|
|
|
26
26
|
|
|
27
27
|
*/
|
|
28
28
|
|
|
29
|
-
// Alienise.js - Estre
|
|
29
|
+
// Alienise.js - Estre javascript Alienese patch //
|
|
30
30
|
//
|
|
31
31
|
// A collection of aliases for shortening and simplifying JavaScript code.
|
|
32
32
|
// This patch aims to create smaller (quicker) and more concise (lighter) JavaScript code.
|
|
33
33
|
// It makes the code more implicit and serves as an alternative to obfuscation.
|
|
34
34
|
//
|
|
35
|
-
// v0.
|
|
35
|
+
// v0.7.0 / release 2026.02.06
|
|
36
36
|
//
|
|
37
37
|
// * Must be loaded modernism.js before this script.
|
|
38
38
|
//
|
|
@@ -46,453 +46,474 @@ if (typeof require !== 'undefined' && typeof module !== 'undefined') {
|
|
|
46
46
|
try { require("modernism"); } catch (e) {}
|
|
47
47
|
}
|
|
48
48
|
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
});
|
|
57
|
-
});
|
|
49
|
+
const _gb = _global ?? (typeof globalThis !== 'undefined') ? globalThis : (typeof window !== 'undefined' ? window : global);
|
|
50
|
+
const dfg = defineGlobal ?? ((name, value) => Object.defineProperty(_gb, name, {
|
|
51
|
+
value: value,
|
|
52
|
+
writable: false,
|
|
53
|
+
configurable: false,
|
|
54
|
+
enumerable: false
|
|
55
|
+
}));
|
|
58
56
|
|
|
59
57
|
|
|
60
58
|
// common letter constants
|
|
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
|
-
|
|
59
|
+
const _0 = "0";
|
|
60
|
+
const _1 = "1";
|
|
61
|
+
const _2 = "2";
|
|
62
|
+
const _3 = "3";
|
|
63
|
+
const _4 = "4";
|
|
64
|
+
const _5 = "5";
|
|
65
|
+
const _6 = "6";
|
|
66
|
+
const _7 = "7";
|
|
67
|
+
const _8 = "8";
|
|
68
|
+
const _9 = "9";
|
|
69
|
+
|
|
70
|
+
const _a = "a";
|
|
71
|
+
const _b = "b";
|
|
72
|
+
const _c = "c";
|
|
73
|
+
const _d = "d";
|
|
74
|
+
const _e = "e";
|
|
75
|
+
const _f = "f";
|
|
76
|
+
const _g = "g";
|
|
77
|
+
const _h = "h";
|
|
78
|
+
const _i = "i";
|
|
79
|
+
const _j = "j";
|
|
80
|
+
const _k = "k";
|
|
81
|
+
const _l = "l";
|
|
82
|
+
const _m = "m";
|
|
83
|
+
const _n = "n";
|
|
84
|
+
const _o = "o";
|
|
85
|
+
const _p = "p";
|
|
86
|
+
const _q = "q";
|
|
87
|
+
const _r = "r";
|
|
88
|
+
const _s = "s";
|
|
89
|
+
const _t = "t";
|
|
90
|
+
const _u = "u";
|
|
91
|
+
const _v = "v";
|
|
92
|
+
const _w = "w";
|
|
93
|
+
const _x = "x";
|
|
94
|
+
const _y = "y";
|
|
95
|
+
const _z = "z";
|
|
96
|
+
|
|
97
|
+
const _A = "A";
|
|
98
|
+
const _B = "B";
|
|
99
|
+
const _C = "C";
|
|
100
|
+
const _D = "D";
|
|
101
|
+
const _E = "E";
|
|
102
|
+
const _F = "F";
|
|
103
|
+
const _G = "G";
|
|
104
|
+
const _H = "H";
|
|
105
|
+
const _I = "I";
|
|
106
|
+
const _J = "J";
|
|
107
|
+
const _K = "K";
|
|
108
|
+
const _L = "L";
|
|
109
|
+
const _M = "M";
|
|
110
|
+
const _N = "N";
|
|
111
|
+
const _O = "O";
|
|
112
|
+
const _P = "P";
|
|
113
|
+
const _Q = "Q";
|
|
114
|
+
const _R = "R";
|
|
115
|
+
const _S = "S";
|
|
116
|
+
const _T = "T";
|
|
117
|
+
const _U = "U";
|
|
118
|
+
const _V = "V";
|
|
119
|
+
const _W = "W";
|
|
120
|
+
const _X = "X";
|
|
121
|
+
const _Y = "Y";
|
|
122
|
+
const _Z = "Z";
|
|
125
123
|
|
|
126
124
|
|
|
127
125
|
// common extra characters constants
|
|
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
|
-
|
|
126
|
+
const lr = "(";
|
|
127
|
+
const rr = ")";
|
|
128
|
+
const lc = "{";
|
|
129
|
+
const rc = "}";
|
|
130
|
+
const ls = "[";
|
|
131
|
+
const rs = "]";
|
|
132
|
+
const lt = "<";
|
|
133
|
+
const gt = ">";
|
|
134
|
+
const ab = lt + gt;
|
|
135
|
+
const cb = gt + lt;
|
|
136
|
+
const ti = "~";
|
|
137
|
+
const ep = "!";
|
|
138
|
+
const em = ep;
|
|
139
|
+
const at = "@";
|
|
140
|
+
const ds = "$";
|
|
141
|
+
const ms = "&";
|
|
142
|
+
const ps = "%";
|
|
143
|
+
const cf = "^";
|
|
144
|
+
const ak = "*";
|
|
145
|
+
const mp = ak;
|
|
146
|
+
const ad = "+";
|
|
147
|
+
const add = ad + ad;
|
|
148
|
+
const hp = "-";
|
|
149
|
+
const sr = hp;
|
|
150
|
+
const srr = sr + sr;
|
|
151
|
+
const us = "_";
|
|
152
|
+
const eq = "=";
|
|
153
|
+
const vl = "|";
|
|
154
|
+
const bs = "\\";
|
|
155
|
+
const ss = "/";
|
|
156
|
+
const dv = ss;
|
|
157
|
+
const qm = "?";
|
|
158
|
+
const nl = ep + eq;
|
|
159
|
+
const le = lt + eq;
|
|
160
|
+
const ge = gt + eq;
|
|
161
|
+
const fa = ad + eq;
|
|
162
|
+
const fs = sr + eq;
|
|
163
|
+
const fm = mp + eq;
|
|
164
|
+
const fd = dv + eq;
|
|
165
|
+
const sq = "'";
|
|
166
|
+
const dq = '"';
|
|
167
|
+
const gv = '`';
|
|
168
|
+
const cl = ":";
|
|
169
|
+
const sc = ";";
|
|
170
|
+
const cm = ",";
|
|
171
|
+
const es = "";
|
|
172
|
+
const l = cm;
|
|
173
|
+
const s = " ";
|
|
174
|
+
const i = "#";
|
|
175
|
+
const d = ".";
|
|
176
|
+
|
|
177
|
+
const cr = "\r";
|
|
178
|
+
const lf = "\n";
|
|
179
|
+
const crlf = cr + lf;
|
|
180
|
+
const lfcr = lf + cr;
|
|
181
|
+
const tab = "\t";
|
|
182
|
+
|
|
183
|
+
const ecr = "\\r";
|
|
184
|
+
const elf = "\\n";
|
|
185
|
+
const ecrlf = ecr + elf;
|
|
186
|
+
const elfcr = elf + ecr;
|
|
187
|
+
const etab = "\\t";
|
|
190
188
|
|
|
191
189
|
|
|
192
190
|
// primitive types alias constant
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
191
|
+
const U = UNDEFINED;
|
|
192
|
+
const N = NULL;
|
|
193
|
+
const T = TRUE;
|
|
194
|
+
const F = FALSE;
|
|
197
195
|
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
196
|
+
const u = undefined;
|
|
197
|
+
const n = null;
|
|
198
|
+
const t = true;
|
|
199
|
+
const f = false;
|
|
202
200
|
|
|
203
201
|
// end point assigner constant
|
|
204
|
-
|
|
205
|
-
|
|
202
|
+
const eoo = u;
|
|
203
|
+
const eoa = u;
|
|
206
204
|
|
|
207
205
|
// prototype of primitive types alias constant
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
206
|
+
const FNC = FUNCTION;
|
|
207
|
+
const BLE = BOOLEAN;
|
|
208
|
+
const STR = STRING;
|
|
209
|
+
const SYM = SYMBOL;
|
|
210
|
+
const NUM = NUMBER;
|
|
211
|
+
const BIG = BIGINT;
|
|
212
|
+
const OBJ = OBJECT;
|
|
213
|
+
|
|
214
|
+
const fun = Function;
|
|
215
|
+
const ble = Boolean;
|
|
216
|
+
const str = String;
|
|
217
|
+
const sym = Symbol;
|
|
218
|
+
const num = Number;
|
|
219
|
+
const big = BigInt;
|
|
220
|
+
const obj = Object;
|
|
223
221
|
|
|
224
222
|
// class names of primitive types constant
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
223
|
+
const FN = _FUNCTION;
|
|
224
|
+
const BL = _BOOLEAN;
|
|
225
|
+
const ST = _STRING;
|
|
226
|
+
const SY = _SYMBOL;
|
|
227
|
+
const NO = _NUMBER;
|
|
228
|
+
const BI = _BIG_INT;
|
|
229
|
+
const OJ = _OBJECT;
|
|
230
|
+
|
|
231
|
+
const fn = Function;
|
|
232
|
+
const bl = Boolean;
|
|
233
|
+
const sg = String;
|
|
234
|
+
const sl = Symbol;
|
|
235
|
+
const no = Number;
|
|
236
|
+
const bi = BigInt;
|
|
237
|
+
const oj = Object;
|
|
240
238
|
|
|
241
239
|
|
|
242
240
|
// frequent object types alias constant
|
|
243
|
-
|
|
241
|
+
const DT = _DATE;
|
|
242
|
+
const TT = _TIME;
|
|
244
243
|
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
244
|
+
const RA = _ARRAY;
|
|
245
|
+
const SA = _SET;
|
|
246
|
+
const MA = _MAP;
|
|
248
247
|
|
|
249
|
-
|
|
248
|
+
const dt = Date;
|
|
249
|
+
const tt = Time;
|
|
250
250
|
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
251
|
+
const ra = Array;
|
|
252
|
+
const sa = Set;
|
|
253
|
+
const ma = Map;
|
|
254
254
|
|
|
255
255
|
|
|
256
256
|
// frequent assign types alias constant
|
|
257
|
-
|
|
258
|
-
|
|
257
|
+
const fnd = FORE_NOT_DEFAULT;
|
|
258
|
+
const mnd = MORE_NOT_DEFAULT;
|
|
259
|
+
const def = DEFAULT;
|
|
260
|
+
const fin = FINALLY;
|
|
259
261
|
|
|
260
262
|
|
|
261
263
|
// frequent object types empty object issuer alias constant
|
|
262
|
-
|
|
264
|
+
const x = {
|
|
263
265
|
get a() { return new Array(); },
|
|
264
266
|
get d() { return new Date(); },
|
|
267
|
+
get m() { return new Time(); },
|
|
265
268
|
get t() { return new Set(); },
|
|
266
269
|
get p() { return new Map(); },
|
|
267
|
-
}
|
|
270
|
+
};
|
|
268
271
|
|
|
269
272
|
|
|
270
273
|
// bypass constant
|
|
271
|
-
|
|
272
|
-
|
|
274
|
+
const ifx = executeIf;
|
|
275
|
+
const itx = executeWhen;
|
|
273
276
|
|
|
274
|
-
|
|
277
|
+
const ifr = ifReturn;
|
|
275
278
|
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
279
|
+
const roen = ifReturnOrEmptyNumber;
|
|
280
|
+
const roes = ifReturnOrEmptyString;
|
|
281
|
+
const roea = ifReturnOrEmptyArray;
|
|
282
|
+
const roeo = ifReturnOrEmptyObject;
|
|
280
283
|
|
|
281
|
-
|
|
284
|
+
const val = valet;
|
|
282
285
|
|
|
283
286
|
|
|
284
287
|
// common process shortcut constant
|
|
285
|
-
|
|
286
|
-
|
|
288
|
+
const f02b = forZeroToBefore;
|
|
289
|
+
const f02r = forZeroToReach;
|
|
287
290
|
|
|
288
|
-
|
|
289
|
-
|
|
291
|
+
const f20 = forToZeroFrom;
|
|
292
|
+
const f21 = forToPrimeFrom;
|
|
290
293
|
|
|
291
|
-
|
|
292
|
-
|
|
294
|
+
const ff = forForward;
|
|
295
|
+
const fb = forBackward;
|
|
293
296
|
|
|
294
|
-
|
|
295
|
-
|
|
297
|
+
const fi = forin;
|
|
298
|
+
const fiv = forinner;
|
|
296
299
|
|
|
297
|
-
|
|
298
|
-
|
|
300
|
+
const fo = forof;
|
|
301
|
+
const fkv = forkv;
|
|
299
302
|
|
|
300
|
-
|
|
301
|
-
|
|
303
|
+
const w = whileIn;
|
|
304
|
+
const dw = doWhileIn;
|
|
302
305
|
|
|
303
306
|
|
|
304
307
|
// meaning comparator constant
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
308
|
+
const to = typeOf;
|
|
309
|
+
|
|
310
|
+
const tm = typeMatch;
|
|
311
|
+
|
|
312
|
+
const tu = typeUndefined;
|
|
313
|
+
const tf = typeFunction;
|
|
314
|
+
const tb = typeBoolean;
|
|
315
|
+
const ts = typeString;
|
|
316
|
+
const ty = typeSymbol;
|
|
317
|
+
const tn = typeNumber;
|
|
318
|
+
const tg = typeBigint;
|
|
319
|
+
const tj = typeObject;
|
|
320
|
+
|
|
321
|
+
const im = instanceMatch;
|
|
322
|
+
const io = isObject;
|
|
323
|
+
const ia = isArray;
|
|
324
|
+
const ioa = isArray;
|
|
325
|
+
const ios = isString;
|
|
326
|
+
const ion = isNumber;
|
|
327
|
+
const iot = isSet;
|
|
328
|
+
const iop = isMap;
|
|
329
|
+
|
|
330
|
+
const sm = same;
|
|
331
|
+
const df = differ;
|
|
332
|
+
|
|
333
|
+
const xv = exact;
|
|
334
|
+
const nxv = notExact;
|
|
335
|
+
const xnv = exactlyNot;
|
|
336
|
+
const xm = exactMatches;
|
|
337
|
+
const nx = notExactMatches;
|
|
338
|
+
const xnm = exactlyNotMatches;
|
|
339
|
+
|
|
340
|
+
const ev = equals;
|
|
341
|
+
const nev = notEquals;
|
|
342
|
+
|
|
343
|
+
const gtv = gatherThan;
|
|
344
|
+
const ltv = lessThan;
|
|
345
|
+
const ngt = notGatherThan;
|
|
346
|
+
const nlt = notLessThan;
|
|
347
|
+
|
|
348
|
+
const gev = gatherOrEquals;
|
|
349
|
+
const lev = lessOrEquals;
|
|
350
|
+
const nge = notGatherAndEquals;
|
|
351
|
+
const nle = notLessAndEquals;
|
|
352
|
+
|
|
353
|
+
const fc = isFalseCase;
|
|
354
|
+
const nfc = isNotFalseCase;
|
|
355
|
+
|
|
356
|
+
const xu = isUndefined;
|
|
357
|
+
const xn = isNull;
|
|
358
|
+
const xt = isExactTrue;
|
|
359
|
+
const xf = isExactFalse;
|
|
360
|
+
|
|
361
|
+
const nxu = isNotUndefined;
|
|
362
|
+
const nxn = isNotNull;
|
|
363
|
+
const nxt = isNotTrue;
|
|
364
|
+
const nxf = isNotFalse;
|
|
365
|
+
|
|
366
|
+
const en = isNully;
|
|
367
|
+
const et = isTruely;
|
|
368
|
+
const ef = isFalsely;
|
|
369
|
+
const ee = isEmpty;
|
|
370
|
+
|
|
371
|
+
const nn = isNotNully;
|
|
372
|
+
const nt = isNotTruely;
|
|
373
|
+
const nf = isNotFalsely;
|
|
374
|
+
const ne = isNotEmpty;
|
|
375
|
+
|
|
376
|
+
const noe = isNullOrEmpty;
|
|
377
|
+
const nne = isNotNullAndEmpty;
|
|
374
378
|
|
|
375
379
|
|
|
376
380
|
// quick execute by conditions constant
|
|
377
|
-
|
|
378
|
-
|
|
381
|
+
const inoe = ifNullOrEmpty;
|
|
382
|
+
const inne = ifNotNullAndEmpty;
|
|
379
383
|
|
|
380
384
|
|
|
381
385
|
// do and return inline double takes
|
|
382
|
-
|
|
383
|
-
|
|
386
|
+
const dr = doAndReturn;
|
|
387
|
+
const drx = doAndReturnByExecute;
|
|
384
388
|
|
|
385
389
|
|
|
386
390
|
// object method shortcut constant
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
+
const ok = keysOf;
|
|
392
|
+
const ov = valuesOf;
|
|
393
|
+
const oe = entriesOf;
|
|
394
|
+
const oc = countOf;
|
|
391
395
|
|
|
392
|
-
|
|
396
|
+
const occ = checkCount;
|
|
393
397
|
|
|
394
398
|
|
|
395
399
|
// match case constant
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
400
|
+
const mc = matchCase;
|
|
401
|
+
const ec = equalCase;
|
|
402
|
+
const xc = exactCase;
|
|
403
|
+
const tc = typeCase;
|
|
404
|
+
const cc = classCase;
|
|
405
|
+
const kc = kindCase;
|
|
402
406
|
|
|
403
407
|
|
|
404
408
|
/** variable data copy */
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
409
|
+
const cp = copy;
|
|
410
|
+
const mk = mock;
|
|
411
|
+
const mm = mimic;
|
|
412
|
+
const tw = twin;
|
|
413
|
+
const cn = clone;
|
|
410
414
|
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
415
|
+
const pc = patch;
|
|
416
|
+
const ow = overwrite;
|
|
417
|
+
const tk = takeover;
|
|
418
|
+
const aq = acquire;
|
|
419
|
+
const ih = inherit;
|
|
416
420
|
|
|
417
|
-
|
|
421
|
+
const rv = revert;
|
|
418
422
|
|
|
419
423
|
|
|
420
424
|
/** run handle */
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
425
|
+
const pq = postQueue;
|
|
426
|
+
const pd = postDelayed;
|
|
427
|
+
const pp = postPromise;
|
|
428
|
+
const pb = postBonded;
|
|
429
|
+
const ppq = postPromiseQueue;
|
|
430
|
+
const paq = postAsyncQueue;
|
|
431
|
+
const pwq = postAwaitQueue;
|
|
432
|
+
const pfq = postFrameQueue;
|
|
433
|
+
const pfp = postFramePromise;
|
|
430
434
|
|
|
431
435
|
|
|
432
436
|
// Object function shortcut constants
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
437
|
+
const dsp = defineStaticProperty;
|
|
438
|
+
const dp = defineProperty;
|
|
439
|
+
const dpx = definePropertyPlex;
|
|
440
|
+
const dspgs = defineStaticGetterAndSetter;
|
|
441
|
+
const dpgs = defineGetterAndSetter;
|
|
442
|
+
const dpgsx = defineGetterAndSetterPlex;
|
|
443
|
+
|
|
444
|
+
|
|
445
|
+
// Regex builder alias
|
|
446
|
+
const rx = (regex, flags) => new RegExp(regex, flags);
|
|
447
|
+
const reg = rx;
|
|
448
|
+
const ri = regex => new RegExp(regex, "i");
|
|
449
|
+
const rg = regex => new RegExp(regex, "g");
|
|
450
|
+
const rm = regex => new RegExp(regex, "m");
|
|
451
|
+
const rig = regex => new RegExp(regex, "ig");
|
|
452
|
+
const rim = regex => new RegExp(regex, "im");
|
|
453
|
+
const rgm = regex => new RegExp(regex, "gm");
|
|
454
|
+
const rigm = regex => new RegExp(regex, "igm");
|
|
439
455
|
|
|
440
456
|
|
|
441
457
|
// additional static function for classes
|
|
442
|
-
|
|
458
|
+
defineGetterAndSetter(fn, "n", function () { return new this(); });
|
|
459
|
+
defineProperty(fn, "w", function () { return new this(...arguments); });
|
|
460
|
+
|
|
443
461
|
defineStaticGetterAndSetter(dt, "t", function () { return this.now(); });
|
|
444
462
|
defineStaticGetterAndSetter(dt, "ms", function () { return dt.n.millis; });
|
|
445
463
|
defineStaticGetterAndSetter(dt, "msd", function () { return this.ms.string.padStart(3, "0"); });
|
|
446
464
|
|
|
465
|
+
defineStaticGetterAndSetter(tt, "t", function () { return this.now(); });
|
|
466
|
+
|
|
447
467
|
|
|
448
468
|
// additional global prototype functions
|
|
449
|
-
definePropertyPlex("mc", function () { return
|
|
450
|
-
definePropertyPlex("ec", function () { return
|
|
451
|
-
definePropertyPlex("xc", function () { return
|
|
452
|
-
definePropertyPlex("tc", function () { return
|
|
453
|
-
definePropertyPlex("cc", function () { return
|
|
454
|
-
definePropertyPlex("kc", function () { return
|
|
455
|
-
|
|
456
|
-
definePropertyPlex("ee", function (process = it => it, ornot = it => it, numberEmptyMatch = 0) { return
|
|
457
|
-
definePropertyPlex("ne", function (process = it => it, ornot = it => it, numberEmptyMatch = 0) { return
|
|
458
|
-
|
|
459
|
-
definePropertyPlex("dr", function (does = (it, args) => {}, returns, args = []) { return
|
|
460
|
-
definePropertyPlex("drx", function (does = (it, args) => {}, forReturns, args = []) { return
|
|
461
|
-
|
|
462
|
-
defineGetterAndSetter(obj, "ok", function () { return
|
|
463
|
-
defineGetterAndSetter(obj, "ov", function () { return
|
|
464
|
-
defineGetterAndSetter(obj, "oe", function () { return
|
|
465
|
-
defineGetterAndSetter(obj, "oc", function () { return
|
|
466
|
-
defineGetterAndSetter(obj, "occ", function () { return
|
|
467
|
-
|
|
468
|
-
defineProperty(obj, "fk", function (work = key => { return false; }) { return
|
|
469
|
-
defineProperty(obj, "fv", function (work = value => { return false; }) { return
|
|
470
|
-
defineProperty(obj, "fe", function (work = (key, value) => { return false; }) { return
|
|
471
|
-
defineProperty(obj, "fkv", function (work = (key, value) => { return false; }) { return
|
|
469
|
+
definePropertyPlex("mc", function () { return matchCase(this.it, ...arguments); });
|
|
470
|
+
definePropertyPlex("ec", function () { return equalCase(this.it, ...arguments); });
|
|
471
|
+
definePropertyPlex("xc", function () { return exactCase(this.it, ...arguments); });
|
|
472
|
+
definePropertyPlex("tc", function () { return typeCase(this.it, ...arguments); });
|
|
473
|
+
definePropertyPlex("cc", function () { return classCase(this.it, ...arguments); });
|
|
474
|
+
definePropertyPlex("kc", function () { return kindCase(this.it, ...arguments); });
|
|
475
|
+
|
|
476
|
+
definePropertyPlex("ee", function (process = it => it, ornot = it => it, numberEmptyMatch = 0) { return isEmpty(this.it, numberEmptyMatch) ? process(this.it) : ornot(this.it); });
|
|
477
|
+
definePropertyPlex("ne", function (process = it => it, ornot = it => it, numberEmptyMatch = 0) { return isNotEmpty(this.it, numberEmptyMatch) ? process(this.it) : ornot(this.it); });
|
|
478
|
+
|
|
479
|
+
definePropertyPlex("dr", function (does = (it, args) => {}, returns, args = []) { return doAndReturn(does, returns, [this.it, ...args]); });
|
|
480
|
+
definePropertyPlex("drx", function (does = (it, args) => {}, forReturns, args = []) { return doAndReturnByExecute(does, forReturns, [this.it, ...args]); });
|
|
481
|
+
|
|
482
|
+
defineGetterAndSetter(obj, "ok", function () { return keysOf(this.it); });
|
|
483
|
+
defineGetterAndSetter(obj, "ov", function () { return valuesOf(this.it); });
|
|
484
|
+
defineGetterAndSetter(obj, "oe", function () { return entriesOf(this.it); });
|
|
485
|
+
defineGetterAndSetter(obj, "oc", function () { return countOf(this.it); });
|
|
486
|
+
defineGetterAndSetter(obj, "occ", function () { return checkCount(this.it, (k, v) => true); });
|
|
487
|
+
|
|
488
|
+
defineProperty(obj, "fk", function (work = key => { return false; }) { return forof(this.it.ways, work); });
|
|
489
|
+
defineProperty(obj, "fv", function (work = value => { return false; }) { return forof(this.it.looks, work); });
|
|
490
|
+
defineProperty(obj, "fe", function (work = (key, value) => { return false; }) { return forkv(this.it.entire, work); });
|
|
491
|
+
defineProperty(obj, "fkv", function (work = (key, value) => { return false; }) { return forkv(this.it.entire, work); });
|
|
472
492
|
|
|
473
493
|
defineProperty(obj, "ko", function (value) { for (const [key, val] of this.it.entire) if (val === value) return key; return undefined; });
|
|
474
494
|
|
|
475
495
|
defineProperty(obj, "tiw", function (key, process = (value, key, host) => value, ornot = (key, host) => host[key]) { return key in this.it ? process(this.it[key], key, this.it) : ornot(key, this.it); });
|
|
476
496
|
|
|
477
|
-
defineProperty(obj, "cp", function (dataOnly = true, primitiveOnly = false, recusive = true) { return
|
|
478
|
-
defineGetterAndSetter(obj, "mk", function () { return
|
|
479
|
-
defineGetterAndSetter(obj, "mm", function () { return
|
|
480
|
-
defineGetterAndSetter(obj, "tw", function () { return
|
|
481
|
-
defineGetterAndSetter(obj, "cl", function () { return
|
|
497
|
+
defineProperty(obj, "cp", function (dataOnly = true, primitiveOnly = false, recusive = true) { return copy(this, dataOnly, primitiveOnly, recusive); });
|
|
498
|
+
defineGetterAndSetter(obj, "mk", function () { return mock(this); });
|
|
499
|
+
defineGetterAndSetter(obj, "mm", function () { return mimic(this); });
|
|
500
|
+
defineGetterAndSetter(obj, "tw", function () { return twin(this); });
|
|
501
|
+
defineGetterAndSetter(obj, "cl", function () { return clone(this); });
|
|
482
502
|
|
|
483
|
-
defineProperty(obj, "pc", function (from, dataOnly = true, primitiveOnly = false, recusive = true, append = false) { return
|
|
484
|
-
defineProperty(obj, "ow", function (from) { return
|
|
485
|
-
defineProperty(obj, "
|
|
486
|
-
defineProperty(obj, "aq", function (from) { return
|
|
487
|
-
defineProperty(obj, "ih", function (from) { return
|
|
503
|
+
defineProperty(obj, "pc", function (from, dataOnly = true, primitiveOnly = false, recusive = true, append = false) { return patch(this.it, from, dataOnly, primitiveOnly, recusive, append); });
|
|
504
|
+
defineProperty(obj, "ow", function (from) { return overwrite(this.it, from); });
|
|
505
|
+
defineProperty(obj, "tk", function (from) { return takeover(this.it, from); });
|
|
506
|
+
defineProperty(obj, "aq", function (from) { return acquire(this.it, from); });
|
|
507
|
+
defineProperty(obj, "ih", function (from) { return inherit(this.it, from); });
|
|
488
508
|
|
|
489
|
-
defineProperty(obj, "rv", function (from, dataOnly = true, primitiveOnly = false, recusive = true, exceptNew = false) { return
|
|
509
|
+
defineProperty(obj, "rv", function (from, dataOnly = true, primitiveOnly = false, recusive = true, exceptNew = false) { return revert(this.it, from, dataOnly, primitiveOnly, recusive, exceptNew); });
|
|
490
510
|
|
|
491
|
-
definePropertyPlex("ifeq", function (that, process = it => it, ornot = it => {}) { return this.let(it =>
|
|
492
|
-
definePropertyPlex("ifneq", function (that, process = it => it, ornot = it => {}) { return this.let(it =>
|
|
511
|
+
definePropertyPlex("ifeq", function (that, process = it => it, ornot = it => {}) { return this.let(it => executeIf(it == that, process, [it], ornot)); });
|
|
512
|
+
definePropertyPlex("ifneq", function (that, process = it => it, ornot = it => {}) { return this.let(it => executeIf(it != that, process, [it], ornot)); });
|
|
493
513
|
|
|
494
514
|
|
|
495
515
|
// additional primitive prototype functions
|
|
516
|
+
defineProperty(num, "div", function (by) { return this.it.divided(by); });
|
|
496
517
|
defineGetterAndSetter(num, "str", function () { return this.it.string; });
|
|
497
518
|
defineGetterAndSetter(num, "prc", function () { return this.it.pricision; });
|
|
498
519
|
defineGetterAndSetter(num, "prs", function () { return this.it.pricisionString; });
|
|
@@ -543,7 +564,7 @@ defineGetterAndSetter(dt, "H", function () { return this.it.hours; });
|
|
|
543
564
|
defineGetterAndSetter(dt, "HH", function () { return this.it.H.d00; });
|
|
544
565
|
defineGetterAndSetter(dt, "a", function () { return this.it.H < 12 ? _A : _P; });
|
|
545
566
|
defineGetterAndSetter(dt, "aa", function () { return this.it.a + _M; });
|
|
546
|
-
defineGetterAndSetter(dt, "h", function () { return
|
|
567
|
+
defineGetterAndSetter(dt, "h", function () { return this.it.hours12; });
|
|
547
568
|
defineGetterAndSetter(dt, "hh", function () { return this.it.h.d00; });
|
|
548
569
|
defineGetterAndSetter(dt, "m", function () { return this.it.minutes; });
|
|
549
570
|
defineGetterAndSetter(dt, "mm", function () { return this.it.m.d00; });
|
|
@@ -559,29 +580,421 @@ defineGetterAndSetter(dt, "Zm", function () { return this.it.zoneMinutes; });
|
|
|
559
580
|
defineGetterAndSetter(dt, "Zmm", function () { return this.it.Zm.d00; });
|
|
560
581
|
defineGetterAndSetter(dt, "Zh", function () { return this.it.Z.int; });
|
|
561
582
|
defineGetterAndSetter(dt, "Zhh", function () { return this.it.Zh.d00; });
|
|
562
|
-
defineGetterAndSetter(dt, "X", function () { return this.it.Zhh + cl +
|
|
583
|
+
defineGetterAndSetter(dt, "X", function () { return this.it.let(it => it.Zhh + cl + it.Zmm); });
|
|
563
584
|
defineGetterAndSetter(dt, "t", function () { return this.it.time; });
|
|
564
585
|
defineGetterAndSetter(dt, "ut", function () { return this.it.unix; });
|
|
565
|
-
defineGetterAndSetter(dt, "mo", function () { return this.it.y * 12 +
|
|
586
|
+
defineGetterAndSetter(dt, "mo", function () { return this.it.let(it => it.y * 12 + it.M0); });
|
|
566
587
|
defineGetterAndSetter(dt, "do", function () { return this.it.dateOffset; });
|
|
588
|
+
defineGetterAndSetter(dt, "ymia0", function () { return this.it.yearMonthIntArray0; });
|
|
589
|
+
defineGetterAndSetter(dt, "ymia", function () { return this.it.yearMonthIntArray; });
|
|
567
590
|
defineGetterAndSetter(dt, "yma", function () { return this.it.yearMonthArray; });
|
|
568
591
|
defineGetterAndSetter(dt, "ym", function () { return this.it.yearMonth; });
|
|
592
|
+
defineGetterAndSetter(dt, "da0", function () { return this.it.dateArray0; });
|
|
593
|
+
defineGetterAndSetter(dt, "da", function () { return this.it.dateArray; });
|
|
569
594
|
defineGetterAndSetter(dt, "ymda", function () { return this.it.dateStringArray; });
|
|
570
595
|
defineGetterAndSetter(dt, "ymd", function () { return this.it.dateString; });
|
|
596
|
+
defineGetterAndSetter(dt, "hmia", function () { return this.it.hourMinutesIntArray; });
|
|
571
597
|
defineGetterAndSetter(dt, "hma", function () { return this.it.hourMinutesArray; });
|
|
572
598
|
defineGetterAndSetter(dt, "hm", function () { return this.it.hourMinutes; });
|
|
599
|
+
defineGetterAndSetter(dt, "ta", function () { return this.it.timeArray; });
|
|
573
600
|
defineGetterAndSetter(dt, "hmsa", function () { return this.it.timeStringArray; });
|
|
574
601
|
defineGetterAndSetter(dt, "hms", function () { return this.it.timeString; });
|
|
602
|
+
defineGetterAndSetter(dt, "tp", function () { return this.it.timePart; });
|
|
603
|
+
defineGetterAndSetter(dt, "tt", function () { return this.it.asTime; });
|
|
604
|
+
defineProperty(dt, "sdt", function (time, m, s, ms) { return this.it.setDayTime(time, m, s, ms); });
|
|
605
|
+
defineProperty(dt, "at", function (time) { return this.it.addTime(time); });
|
|
606
|
+
|
|
607
|
+
|
|
608
|
+
defineGetterAndSetter(tt, "d", function () { return this.it.days; });
|
|
609
|
+
defineGetterAndSetter(tt, "dd", function () { return this.it.d.d00; });
|
|
610
|
+
defineGetterAndSetter(tt, "H", function () { return this.it.hours; });
|
|
611
|
+
defineGetterAndSetter(tt, "HH", function () { return this.it.H.d00; });
|
|
612
|
+
defineGetterAndSetter(tt, "a", function () { return this.it.H < 12 ? _A : _P; });
|
|
613
|
+
defineGetterAndSetter(tt, "aa", function () { return this.it.a + _M; });
|
|
614
|
+
defineGetterAndSetter(tt, "h", function () { return (this.it.H % 12).let(it => it == 0 ? 12 : it); });
|
|
615
|
+
defineGetterAndSetter(tt, "hh", function () { return this.it.h.d00; });
|
|
616
|
+
defineGetterAndSetter(tt, "m", function () { return this.it.minutes; });
|
|
617
|
+
defineGetterAndSetter(tt, "mm", function () { return this.it.m.d00; });
|
|
618
|
+
defineGetterAndSetter(tt, "s", function () { return this.it.seconds; });
|
|
619
|
+
defineGetterAndSetter(tt, "ss", function () { return this.it.s.d00; });
|
|
620
|
+
defineGetterAndSetter(tt, "ms", function () { return this.it.millis; });
|
|
621
|
+
defineGetterAndSetter(tt, "S", function () { return this.it.ms; });
|
|
622
|
+
defineGetterAndSetter(tt, "SSS", function () { return this.it.S.d000; });
|
|
623
|
+
defineGetterAndSetter(tt, "hmia", function () { return this.it.hourMinutesIntArray; });
|
|
624
|
+
defineGetterAndSetter(tt, "hma", function () { return this.it.hourMinutesArray; });
|
|
625
|
+
defineGetterAndSetter(tt, "hm", function () { return this.it.hourMinutes; });
|
|
626
|
+
defineGetterAndSetter(tt, "ta", function () { return this.it.timeArray; });
|
|
627
|
+
defineGetterAndSetter(tt, "hmsa", function () { return this.it.timeStringArray; });
|
|
628
|
+
defineGetterAndSetter(tt, "hms", function () { return this.it.timeString; });
|
|
629
|
+
|
|
630
|
+
|
|
631
|
+
// Bind to global when not a browser
|
|
632
|
+
if (typeof window === U) {
|
|
633
|
+
dfg("_0", _0);
|
|
634
|
+
dfg("_1", _1);
|
|
635
|
+
dfg("_2", _2);
|
|
636
|
+
dfg("_3", _3);
|
|
637
|
+
dfg("_4", _4);
|
|
638
|
+
dfg("_5", _5);
|
|
639
|
+
dfg("_6", _6);
|
|
640
|
+
dfg("_7", _7);
|
|
641
|
+
dfg("_8", _8);
|
|
642
|
+
dfg("_9", _9);
|
|
643
|
+
|
|
644
|
+
dfg("_a", _a);
|
|
645
|
+
dfg("_b", _b);
|
|
646
|
+
dfg("_c", _c);
|
|
647
|
+
dfg("_d", _d);
|
|
648
|
+
dfg("_e", _e);
|
|
649
|
+
dfg("_f", _f);
|
|
650
|
+
dfg("_g", _g);
|
|
651
|
+
dfg("_h", _h);
|
|
652
|
+
dfg("_i", _i);
|
|
653
|
+
dfg("_j", _j);
|
|
654
|
+
dfg("_k", _k);
|
|
655
|
+
dfg("_l", _l);
|
|
656
|
+
dfg("_m", _m);
|
|
657
|
+
dfg("_n", _n);
|
|
658
|
+
dfg("_o", _o);
|
|
659
|
+
dfg("_p", _p);
|
|
660
|
+
dfg("_q", _q);
|
|
661
|
+
dfg("_r", _r);
|
|
662
|
+
dfg("_s", _s);
|
|
663
|
+
dfg("_t", _t);
|
|
664
|
+
dfg("_u", _u);
|
|
665
|
+
dfg("_v", _v);
|
|
666
|
+
dfg("_w", _w);
|
|
667
|
+
dfg("_x", _x);
|
|
668
|
+
dfg("_y", _y);
|
|
669
|
+
dfg("_z", _z);
|
|
670
|
+
|
|
671
|
+
dfg("_A", _A);
|
|
672
|
+
dfg("_B", _B);
|
|
673
|
+
dfg("_C", _C);
|
|
674
|
+
dfg("_D", _D);
|
|
675
|
+
dfg("_E", _E);
|
|
676
|
+
dfg("_F", _F);
|
|
677
|
+
dfg("_G", _G);
|
|
678
|
+
dfg("_H", _H);
|
|
679
|
+
dfg("_I", _I);
|
|
680
|
+
dfg("_J", _J);
|
|
681
|
+
dfg("_K", _K);
|
|
682
|
+
dfg("_L", _L);
|
|
683
|
+
dfg("_M", _M);
|
|
684
|
+
dfg("_N", _N);
|
|
685
|
+
dfg("_O", _O);
|
|
686
|
+
dfg("_P", _P);
|
|
687
|
+
dfg("_Q", _Q);
|
|
688
|
+
dfg("_R", _R);
|
|
689
|
+
dfg("_S", _S);
|
|
690
|
+
dfg("_T", _T);
|
|
691
|
+
dfg("_U", _U);
|
|
692
|
+
dfg("_V", _V);
|
|
693
|
+
dfg("_W", _W);
|
|
694
|
+
dfg("_X", _X);
|
|
695
|
+
dfg("_Y", _Y);
|
|
696
|
+
dfg("_Z", _Z);
|
|
697
|
+
|
|
698
|
+
|
|
699
|
+
dfg("lr", lr);
|
|
700
|
+
dfg("rr", rr);
|
|
701
|
+
dfg("lc", lc);
|
|
702
|
+
dfg("rc", rc);
|
|
703
|
+
dfg("ls", ls);
|
|
704
|
+
dfg("rs", rs);
|
|
705
|
+
dfg("lt", lt);
|
|
706
|
+
dfg("gt", gt);
|
|
707
|
+
dfg("ab", ab);
|
|
708
|
+
dfg("cb", cb);
|
|
709
|
+
dfg("ti", ti);
|
|
710
|
+
dfg("ep", ep);
|
|
711
|
+
dfg("em", em);
|
|
712
|
+
dfg("at", at);
|
|
713
|
+
dfg("ds", ds);
|
|
714
|
+
dfg("ms", ms);
|
|
715
|
+
dfg("ps", ps);
|
|
716
|
+
dfg("cf", cf);
|
|
717
|
+
dfg("ak", ak);
|
|
718
|
+
dfg("mp", mp);
|
|
719
|
+
dfg("ad", ad);
|
|
720
|
+
dfg("add", add);
|
|
721
|
+
dfg("hp", hp);
|
|
722
|
+
dfg("sr", sr);
|
|
723
|
+
dfg("srr", srr);
|
|
724
|
+
dfg("us", us);
|
|
725
|
+
dfg("eq", eq);
|
|
726
|
+
dfg("vl", vl);
|
|
727
|
+
dfg("bs", bs);
|
|
728
|
+
dfg("ss", ss);
|
|
729
|
+
dfg("dv", dv);
|
|
730
|
+
dfg("qm", qm);
|
|
731
|
+
dfg("nl", nl);
|
|
732
|
+
dfg("le", le);
|
|
733
|
+
dfg("ge", ge);
|
|
734
|
+
dfg("fa", fa);
|
|
735
|
+
dfg("fs", fs);
|
|
736
|
+
dfg("fm", fm);
|
|
737
|
+
dfg("fd", fd);
|
|
738
|
+
dfg("sq", sq);
|
|
739
|
+
dfg("dq", dq);
|
|
740
|
+
dfg("gv", gv);
|
|
741
|
+
dfg("cl", cl);
|
|
742
|
+
dfg("sc", sc);
|
|
743
|
+
dfg("cm", cm);
|
|
744
|
+
dfg("es", es);
|
|
745
|
+
dfg("l", l);
|
|
746
|
+
dfg("s", s);
|
|
747
|
+
dfg("i", i);
|
|
748
|
+
dfg("d", d);
|
|
749
|
+
|
|
750
|
+
dfg("cr", cr);
|
|
751
|
+
dfg("lf", lf);
|
|
752
|
+
dfg("crlf", crlf);
|
|
753
|
+
dfg("lfcr", lfcr);
|
|
754
|
+
dfg("tab", tab);
|
|
755
|
+
|
|
756
|
+
dfg("ecr", ecr);
|
|
757
|
+
dfg("elf", elf);
|
|
758
|
+
dfg("ecrlf", ecrlf);
|
|
759
|
+
dfg("elfcr", elfcr);
|
|
760
|
+
dfg("etab", etab);
|
|
761
|
+
|
|
762
|
+
|
|
763
|
+
dfg("U", U);
|
|
764
|
+
dfg("N", N);
|
|
765
|
+
dfg("T", T);
|
|
766
|
+
dfg("F", F);
|
|
767
|
+
|
|
768
|
+
dfg("u", u);
|
|
769
|
+
dfg("n", n);
|
|
770
|
+
dfg("t", t);
|
|
771
|
+
dfg("f", f);
|
|
772
|
+
|
|
773
|
+
dfg("eoo", eoo);
|
|
774
|
+
dfg("eoa", eoa);
|
|
775
|
+
|
|
776
|
+
dfg("FNC", FNC);
|
|
777
|
+
dfg("BLE", BLE);
|
|
778
|
+
dfg("STR", STR);
|
|
779
|
+
dfg("SYM", SYM);
|
|
780
|
+
dfg("NUM", NUM);
|
|
781
|
+
dfg("BIG", BIG);
|
|
782
|
+
dfg("OBJ", OBJ);
|
|
783
|
+
|
|
784
|
+
dfg("fun", fun);
|
|
785
|
+
dfg("ble", ble);
|
|
786
|
+
dfg("str", str);
|
|
787
|
+
dfg("sym", sym);
|
|
788
|
+
dfg("num", num);
|
|
789
|
+
dfg("big", big);
|
|
790
|
+
dfg("obj", obj);
|
|
791
|
+
|
|
792
|
+
dfg("FN", FN);
|
|
793
|
+
dfg("BL", BL);
|
|
794
|
+
dfg("ST", ST);
|
|
795
|
+
dfg("SY", SY);
|
|
796
|
+
dfg("NO", NO);
|
|
797
|
+
dfg("BI", BI);
|
|
798
|
+
dfg("OJ", OJ);
|
|
799
|
+
|
|
800
|
+
dfg("fn", fn);
|
|
801
|
+
dfg("bl", bl);
|
|
802
|
+
dfg("sg", sg);
|
|
803
|
+
dfg("sl", sl);
|
|
804
|
+
dfg("no", no);
|
|
805
|
+
dfg("bi", bi);
|
|
806
|
+
dfg("oj", oj);
|
|
807
|
+
|
|
808
|
+
|
|
809
|
+
dfg("DT", DT);
|
|
810
|
+
|
|
811
|
+
dfg("RA", RA);
|
|
812
|
+
dfg("SA", SA);
|
|
813
|
+
dfg("MA", MA);
|
|
814
|
+
|
|
815
|
+
dfg("dt", dt);
|
|
816
|
+
dfg("tt", tt);
|
|
817
|
+
|
|
818
|
+
dfg("ra", ra);
|
|
819
|
+
dfg("sa", sa);
|
|
820
|
+
dfg("ma", ma);
|
|
821
|
+
|
|
822
|
+
|
|
823
|
+
dfg("def", def);
|
|
824
|
+
dfg("fin", fin);
|
|
825
|
+
|
|
826
|
+
|
|
827
|
+
dfg("x", x);
|
|
828
|
+
|
|
829
|
+
|
|
830
|
+
dfg("ifx", ifx);
|
|
831
|
+
dfg("itx", itx);
|
|
832
|
+
|
|
833
|
+
dfg("ifr", ifr);
|
|
834
|
+
|
|
835
|
+
dfg("roen", roen);
|
|
836
|
+
dfg("roes", roes);
|
|
837
|
+
dfg("roea", roea);
|
|
838
|
+
dfg("roeo", roeo);
|
|
575
839
|
|
|
840
|
+
dfg("val", val);
|
|
576
841
|
|
|
577
842
|
|
|
578
|
-
|
|
579
|
-
dfg("
|
|
580
|
-
|
|
581
|
-
dfg("
|
|
582
|
-
dfg("
|
|
583
|
-
|
|
584
|
-
dfg("
|
|
585
|
-
dfg("
|
|
586
|
-
|
|
587
|
-
dfg("
|
|
843
|
+
dfg("f02b", f02b);
|
|
844
|
+
dfg("f02r", f02r);
|
|
845
|
+
|
|
846
|
+
dfg("f20", f20);
|
|
847
|
+
dfg("f21", f21);
|
|
848
|
+
|
|
849
|
+
dfg("ff", ff);
|
|
850
|
+
dfg("fb", fb);
|
|
851
|
+
|
|
852
|
+
dfg("fi", fi);
|
|
853
|
+
dfg("fiv", fiv);
|
|
854
|
+
|
|
855
|
+
dfg("fo", fo);
|
|
856
|
+
dfg("fkv", fkv);
|
|
857
|
+
|
|
858
|
+
dfg("w", w);
|
|
859
|
+
dfg("dw", dw);
|
|
860
|
+
|
|
861
|
+
|
|
862
|
+
dfg("to", to);
|
|
863
|
+
|
|
864
|
+
dfg("tm", tm);
|
|
865
|
+
|
|
866
|
+
dfg("tu", tu);
|
|
867
|
+
dfg("tf", tf);
|
|
868
|
+
dfg("tb", tb);
|
|
869
|
+
dfg("ts", ts);
|
|
870
|
+
dfg("ty", ty);
|
|
871
|
+
dfg("tn", tn);
|
|
872
|
+
dfg("tg", tg);
|
|
873
|
+
dfg("tj", tj);
|
|
874
|
+
|
|
875
|
+
dfg("im", im);
|
|
876
|
+
dfg("io", io);
|
|
877
|
+
dfg("ia", ia);
|
|
878
|
+
dfg("ioa", ioa);
|
|
879
|
+
dfg("ios", ios);
|
|
880
|
+
dfg("ion", ion);
|
|
881
|
+
dfg("iot", iot);
|
|
882
|
+
dfg("iop", iop);
|
|
883
|
+
|
|
884
|
+
dfg("sm", sm);
|
|
885
|
+
dfg("df", df);
|
|
886
|
+
|
|
887
|
+
dfg("xv", xv);
|
|
888
|
+
dfg("nxv", nxv);
|
|
889
|
+
dfg("xnv", xnv);
|
|
890
|
+
dfg("xm", xm);
|
|
891
|
+
dfg("nx", nx);
|
|
892
|
+
dfg("xnm", xnm);
|
|
893
|
+
|
|
894
|
+
dfg("ev", ev);
|
|
895
|
+
dfg("nev", nev);
|
|
896
|
+
|
|
897
|
+
dfg("gtv", gtv);
|
|
898
|
+
dfg("ltv", ltv);
|
|
899
|
+
dfg("ngt", ngt);
|
|
900
|
+
dfg("nlt", nlt);
|
|
901
|
+
|
|
902
|
+
dfg("gev", gev);
|
|
903
|
+
dfg("lev", lev);
|
|
904
|
+
dfg("nge", nge);
|
|
905
|
+
dfg("nle", nle);
|
|
906
|
+
|
|
907
|
+
dfg("fc", fc);
|
|
908
|
+
dfg("nfc", nfc);
|
|
909
|
+
|
|
910
|
+
dfg("xu", xu);
|
|
911
|
+
dfg("xn", xn);
|
|
912
|
+
dfg("xt", xt);
|
|
913
|
+
dfg("xf", xf);
|
|
914
|
+
|
|
915
|
+
dfg("nxu", nxu);
|
|
916
|
+
dfg("nxn", nxn);
|
|
917
|
+
dfg("nxt", nxt);
|
|
918
|
+
dfg("nxf", nxf);
|
|
919
|
+
|
|
920
|
+
dfg("en", en);
|
|
921
|
+
dfg("et", et);
|
|
922
|
+
dfg("ef", ef);
|
|
923
|
+
dfg("ee", ee);
|
|
924
|
+
|
|
925
|
+
dfg("nn", nn);
|
|
926
|
+
dfg("nt", nt);
|
|
927
|
+
dfg("nf", nf);
|
|
928
|
+
dfg("ne", ne);
|
|
929
|
+
|
|
930
|
+
dfg("noe", noe);
|
|
931
|
+
dfg("nne", nne);
|
|
932
|
+
|
|
933
|
+
|
|
934
|
+
dfg("inoe", inoe);
|
|
935
|
+
dfg("inne", inne);
|
|
936
|
+
|
|
937
|
+
|
|
938
|
+
dfg("dr", dr);
|
|
939
|
+
dfg("drx", drx);
|
|
940
|
+
|
|
941
|
+
|
|
942
|
+
dfg("ok", ok);
|
|
943
|
+
dfg("ov", ov);
|
|
944
|
+
dfg("oe", oe);
|
|
945
|
+
dfg("oc", oc);
|
|
946
|
+
|
|
947
|
+
dfg("occ", occ);
|
|
948
|
+
|
|
949
|
+
dfg("mc", mc);
|
|
950
|
+
dfg("ec", ec);
|
|
951
|
+
dfg("xc", xc);
|
|
952
|
+
dfg("tc", tc);
|
|
953
|
+
dfg("cc", cc);
|
|
954
|
+
dfg("kc", kc);
|
|
955
|
+
|
|
956
|
+
|
|
957
|
+
dfg("cp", cp);
|
|
958
|
+
dfg("mk", mk);
|
|
959
|
+
dfg("mm", mm);
|
|
960
|
+
dfg("tw", tw);
|
|
961
|
+
dfg("cn", cn);
|
|
962
|
+
|
|
963
|
+
dfg("pc", pc);
|
|
964
|
+
dfg("ow", ow);
|
|
965
|
+
dfg("tk", tk);
|
|
966
|
+
dfg("aq", aq);
|
|
967
|
+
dfg("ih", ih);
|
|
968
|
+
|
|
969
|
+
dfg("rv", rv);
|
|
970
|
+
|
|
971
|
+
|
|
972
|
+
dfg("pq", pq);
|
|
973
|
+
dfg("pd", pd);
|
|
974
|
+
dfg("pp", pp);
|
|
975
|
+
dfg("pb", pb);
|
|
976
|
+
dfg("ppq", ppq);
|
|
977
|
+
dfg("paq", paq);
|
|
978
|
+
dfg("pwq", pwq);
|
|
979
|
+
dfg("pfq", pfq);
|
|
980
|
+
dfg("pfp", pfp);
|
|
981
|
+
|
|
982
|
+
|
|
983
|
+
dfg("dsp", dsp);
|
|
984
|
+
dfg("dp", dp);
|
|
985
|
+
dfg("dpx", dpx);
|
|
986
|
+
dfg("dspgs", dspgs);
|
|
987
|
+
dfg("dpgs", dpgs);
|
|
988
|
+
dfg("dpgsx", dpgsx);
|
|
989
|
+
|
|
990
|
+
|
|
991
|
+
dfg("rx", rx);
|
|
992
|
+
dfg("reg", reg);
|
|
993
|
+
dfg("ri", ri);
|
|
994
|
+
dfg("rg", rg);
|
|
995
|
+
dfg("rm", rm);
|
|
996
|
+
dfg("rig", rig);
|
|
997
|
+
dfg("rim", rim);
|
|
998
|
+
dfg("rgm", rgm);
|
|
999
|
+
dfg("rigm", rigm);
|
|
1000
|
+
}
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "alienese",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"description": "Alienise.js - Estre javscript Alienese patch",
|
|
5
5
|
"main": "alienese.js",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"modernism": "^0.
|
|
7
|
+
"modernism": "^0.7.0"
|
|
8
8
|
},
|
|
9
9
|
"scripts": {
|
|
10
10
|
"test": "echo \"Error: no test specified\" && exit 1"
|