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.
Files changed (2) hide show
  1. package/alienese.js +782 -369
  2. package/package.json +2 -2
package/alienese.js CHANGED
@@ -26,13 +26,13 @@ SOFTWARE.
26
26
 
27
27
  */
28
28
 
29
- // Alienise.js - Estre javscript Alienese patch //
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.5.2 / release 2026.01.01
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
- let _gb = _global ?? (typeof globalThis !== 'undefined') ? globalThis : (typeof window !== 'undefined' ? window : global);
50
- let dfg = defineGlobal ?? ((name, value) => {
51
- Object.defineProperty(_gb, name, {
52
- value: value,
53
- writable: false,
54
- configurable: false,
55
- enumerable: false
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
- dfg("_0", "0");
62
- dfg("_1", "1");
63
- dfg("_2", "2");
64
- dfg("_3", "3");
65
- dfg("_4", "4");
66
- dfg("_5", "5");
67
- dfg("_6", "6");
68
- dfg("_7", "7");
69
- dfg("_8", "8");
70
- dfg("_9", "9");
71
-
72
- dfg("_a", "a");
73
- dfg("_b", "b");
74
- dfg("_c", "c");
75
- dfg("_d", "d");
76
- dfg("_e", "e");
77
- dfg("_f", "f");
78
- dfg("_g", "g");
79
- dfg("_h", "h");
80
- dfg("_i", "i");
81
- dfg("_j", "j");
82
- dfg("_k", "k");
83
- dfg("_l", "l");
84
- dfg("_m", "m");
85
- dfg("_n", "n");
86
- dfg("_o", "o");
87
- dfg("_p", "p");
88
- dfg("_q", "q");
89
- dfg("_r", "r");
90
- dfg("_s", "s");
91
- dfg("_t", "t");
92
- dfg("_u", "u");
93
- dfg("_v", "v");
94
- dfg("_w", "w");
95
- dfg("_x", "x");
96
- dfg("_y", "y");
97
- dfg("_z", "z");
98
-
99
- dfg("_A", "A");
100
- dfg("_B", "B");
101
- dfg("_C", "C");
102
- dfg("_D", "D");
103
- dfg("_E", "E");
104
- dfg("_F", "F");
105
- dfg("_G", "G");
106
- dfg("_H", "H");
107
- dfg("_I", "I");
108
- dfg("_J", "J");
109
- dfg("_K", "K");
110
- dfg("_L", "L");
111
- dfg("_M", "M");
112
- dfg("_N", "N");
113
- dfg("_O", "O");
114
- dfg("_P", "P");
115
- dfg("_Q", "Q");
116
- dfg("_R", "R");
117
- dfg("_S", "S");
118
- dfg("_T", "T");
119
- dfg("_U", "U");
120
- dfg("_V", "V");
121
- dfg("_W", "W");
122
- dfg("_X", "X");
123
- dfg("_Y", "Y");
124
- dfg("_Z", "Z");
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
- dfg("lr", "(");
129
- dfg("rr", ")");
130
- dfg("lc", "{");
131
- dfg("rc", "}");
132
- dfg("ls", "[");
133
- dfg("rs", "]");
134
- dfg("lt", "<");
135
- dfg("gt", ">");
136
- dfg("ab", lt + gt);
137
- dfg("cb", gt + lt);
138
- dfg("ti", "~");
139
- dfg("ep", "!");
140
- dfg("em", ep);
141
- dfg("at", "@");
142
- dfg("ds", "$");
143
- dfg("ms", "&");
144
- dfg("ps", "%");
145
- dfg("cf", "^");
146
- dfg("ak", "*");
147
- dfg("mp", ak);
148
- dfg("ad", "+");
149
- dfg("add", ad + ad);
150
- dfg("hp", "-");
151
- dfg("sr", hp);
152
- dfg("srr", sr + sr);
153
- dfg("us", "_");
154
- dfg("eq", "=");
155
- dfg("vl", "|");
156
- dfg("bs", "\\");
157
- dfg("ss", "/");
158
- dfg("dv", ss);
159
- dfg("qm", "?");
160
- dfg("nl", ep + eq);
161
- dfg("le", lt + eq);
162
- dfg("ge", gt + eq);
163
- dfg("fa", ad + eq);
164
- dfg("fs", sr + eq);
165
- dfg("fm", mp + eq);
166
- dfg("fd", dv + eq);
167
- dfg("sq", "'");
168
- dfg("dq", '"');
169
- dfg("gv", '`');
170
- dfg("cl", ":");
171
- dfg("sc", ";");
172
- dfg("cm", ",");
173
- dfg("es", "");
174
- dfg("l", cm);
175
- dfg("s", " ");
176
- dfg("i", "#");
177
- dfg("d", ".");
178
-
179
- dfg("cr", "\r");
180
- dfg("lf", "\n");
181
- dfg("crlf", cr + lf);
182
- dfg("lfcr", lf + cr);
183
- dfg("tab", "\t");
184
-
185
- dfg("ecr", "\\r");
186
- dfg("elf", "\\n");
187
- dfg("ecrlf", ecr + elf);
188
- dfg("elfcr", elf + ecr);
189
- dfg("etab", "\\t");
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
- dfg("U", UNDEFINED);
194
- dfg("N", NULL);
195
- dfg("T", TRUE);
196
- dfg("F", FALSE);
191
+ const U = UNDEFINED;
192
+ const N = NULL;
193
+ const T = TRUE;
194
+ const F = FALSE;
197
195
 
198
- dfg("u", undefined);
199
- dfg("n", null);
200
- dfg("t", true);
201
- dfg("f", false);
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
- dfg("eoo", _gb.u);
205
- dfg("eoa", _gb.u);
202
+ const eoo = u;
203
+ const eoa = u;
206
204
 
207
205
  // prototype of primitive types alias constant
208
- dfg("FNC", _gb.FUNCTION);
209
- dfg("BLE", _gb.BOOLEAN);
210
- dfg("STR", _gb.STRING);
211
- dfg("SYM", _gb.SYMBOL);
212
- dfg("NUM", _gb.NUMBER);
213
- dfg("BIG", _gb.BIGINT);
214
- dfg("OBJ", _gb.OBJECT);
215
-
216
- dfg("fun", Function);
217
- dfg("ble", Boolean);
218
- dfg("str", String);
219
- dfg("sym", Symbol);
220
- dfg("num", Number);
221
- dfg("big", BigInt);
222
- dfg("obj", Object);
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
- dfg("FN", _gb._FUNCTION);
226
- dfg("BL", _gb._BOOLEAN);
227
- dfg("ST", _gb._STRING);
228
- dfg("SY", _gb._SYMBOL);
229
- dfg("NO", _gb._NUMBER);
230
- dfg("BI", _gb._BIG_INT);
231
- dfg("OJ", _gb._OBJECT);
232
-
233
- dfg("fn", Function);
234
- dfg("bl", Boolean);
235
- dfg("sg", String);
236
- dfg("sl", Symbol);
237
- dfg("no", Number);
238
- dfg("bi", BigInt);
239
- dfg("oj", Object);
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
- dfg("DT", _gb._DATE);
241
+ const DT = _DATE;
242
+ const TT = _TIME;
244
243
 
245
- dfg("RA", _gb._ARRAY);
246
- dfg("SA", _gb._SET);
247
- dfg("MA", _gb._MAP);
244
+ const RA = _ARRAY;
245
+ const SA = _SET;
246
+ const MA = _MAP;
248
247
 
249
- dfg("dt", Date);
248
+ const dt = Date;
249
+ const tt = Time;
250
250
 
251
- dfg("ra", Array);
252
- dfg("sa", Set);
253
- dfg("ma", Map);
251
+ const ra = Array;
252
+ const sa = Set;
253
+ const ma = Map;
254
254
 
255
255
 
256
256
  // frequent assign types alias constant
257
- dfg("def", _gb.DEFAULT);
258
- dfg("fin", _gb.FINALLY);
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
- dfg("x", {
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
- dfg("ifx", _gb.executeIf);
272
- dfg("itx", _gb.executeWhen);
274
+ const ifx = executeIf;
275
+ const itx = executeWhen;
273
276
 
274
- dfg("ifr", _gb.ifReturn);
277
+ const ifr = ifReturn;
275
278
 
276
- dfg("roen", _gb.ifReturnOrEmptyNumber);
277
- dfg("roes", _gb.ifReturnOrEmptyString);
278
- dfg("roea", _gb.ifReturnOrEmptyArray);
279
- dfg("roeo", _gb.ifReturnOrEmptyObject);
279
+ const roen = ifReturnOrEmptyNumber;
280
+ const roes = ifReturnOrEmptyString;
281
+ const roea = ifReturnOrEmptyArray;
282
+ const roeo = ifReturnOrEmptyObject;
280
283
 
281
- dfg("val", _gb.valet);
284
+ const val = valet;
282
285
 
283
286
 
284
287
  // common process shortcut constant
285
- dfg("f02b", _gb.forZeroToBefore);
286
- dfg("f02r", _gb.forZeroToReach);
288
+ const f02b = forZeroToBefore;
289
+ const f02r = forZeroToReach;
287
290
 
288
- dfg("f20", _gb.forToZeroFrom);
289
- dfg("f21", _gb.forToPrimeFrom);
291
+ const f20 = forToZeroFrom;
292
+ const f21 = forToPrimeFrom;
290
293
 
291
- dfg("ff", _gb.forForward);
292
- dfg("fb", _gb.forBackward);
294
+ const ff = forForward;
295
+ const fb = forBackward;
293
296
 
294
- dfg("fi", _gb.forin);
295
- dfg("fiv", _gb.forinner);
297
+ const fi = forin;
298
+ const fiv = forinner;
296
299
 
297
- dfg("fo", _gb.forof);
298
- dfg("fkv", _gb.forkv);
300
+ const fo = forof;
301
+ const fkv = forkv;
299
302
 
300
- dfg("w", _gb.whileIn);
301
- dfg("dw", _gb.doWhileIn);
303
+ const w = whileIn;
304
+ const dw = doWhileIn;
302
305
 
303
306
 
304
307
  // meaning comparator constant
305
- dfg("to", _gb.typeOf);
306
-
307
- dfg("tm", _gb.typeMatch);
308
-
309
- dfg("tu", _gb.typeUndefined);
310
- dfg("tf", _gb.typeFunction);
311
- dfg("tb", _gb.typeBoolean);
312
- dfg("ts", _gb.typeString);
313
- dfg("ty", _gb.typeSymbol);
314
- dfg("tn", _gb.typeNumber);
315
- dfg("tg", _gb.typeBigint);
316
- dfg("tj", _gb.typeObject);
317
-
318
- dfg("im", _gb.instanceMatch);
319
- dfg("io", _gb.isObject);
320
- dfg("ia", _gb.isArray);
321
- dfg("ioa", _gb.isArray);
322
- dfg("ios", _gb.isString);
323
- dfg("ion", _gb.isNumber);
324
- dfg("iot", _gb.isSet);
325
- dfg("iop", _gb.isMap);
326
-
327
- dfg("xv", _gb.exact);
328
- dfg("nxv", _gb.notExact);
329
- dfg("xnv", _gb.exactlyNot);
330
- dfg("xm", _gb.exactMatches);
331
- dfg("nx", _gb.notExactMatches);
332
- dfg("xnm", _gb.exactlyNotMatches);
333
-
334
- dfg("ev", _gb.equals);
335
- dfg("nev", _gb.notEquals);
336
- dfg("sm", _gb.same);
337
- dfg("df", _gb.different);
338
-
339
- dfg("gtv", _gb.getherThan);
340
- dfg("ltv", _gb.lessThan);
341
- dfg("ngt", _gb.notGetherThan);
342
- dfg("nlt", _gb.notLessThan);
343
-
344
- dfg("gev", _gb.getherOrEquals);
345
- dfg("lev", _gb.lessOrEquels);
346
- dfg("nge", _gb.notGetherAndEquals);
347
- dfg("nle", _gb.notLessAndEquals);
348
-
349
- dfg("fc", _gb.isFalseCase);
350
- dfg("nfc", _gb.isNotFalseCase);
351
-
352
- dfg("xu", _gb.isUndefined);
353
- dfg("xn", _gb.isNull);
354
- dfg("xt", _gb.isExactTrue);
355
- dfg("xf", _gb.isExactFalse);
356
-
357
- dfg("nxu", _gb.isNotUndefined);
358
- dfg("nxn", _gb.isNotNull);
359
- dfg("nxt", _gb.isNotTrue);
360
- dfg("nxf", _gb.isNotFalse);
361
-
362
- dfg("en", _gb.isNully);
363
- dfg("et", _gb.isTruely);
364
- dfg("ef", _gb.isFalsely);
365
- dfg("ee", _gb.isEmpty);
366
-
367
- dfg("nn", _gb.isNotNully);
368
- dfg("nt", _gb.isNotTruely);
369
- dfg("nf", _gb.isNotFalsely);
370
- dfg("ne", _gb.isNotEmpty);
371
-
372
- dfg("noe", _gb.isNullOrEmpty);
373
- dfg("nne", _gb.isNotNullAndEmpty);
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
- dfg("inoe", _gb.ifNullOrEmpty);
378
- dfg("inne", _gb.ifNotNullAndEmpty);
381
+ const inoe = ifNullOrEmpty;
382
+ const inne = ifNotNullAndEmpty;
379
383
 
380
384
 
381
385
  // do and return inline double takes
382
- dfg("dr", _gb.doAndReturn);
383
- dfg("drx", _gb.doAndReturnByExecute);
386
+ const dr = doAndReturn;
387
+ const drx = doAndReturnByExecute;
384
388
 
385
389
 
386
390
  // object method shortcut constant
387
- dfg("ok", _gb.keysOf);
388
- dfg("ov", _gb.valuesOf);
389
- dfg("oe", _gb.entriesOf);
390
- dfg("oc", _gb.countOf);
391
+ const ok = keysOf;
392
+ const ov = valuesOf;
393
+ const oe = entriesOf;
394
+ const oc = countOf;
391
395
 
392
- dfg("occ", _gb.checkCount);
396
+ const occ = checkCount;
393
397
 
394
398
 
395
399
  // match case constant
396
- dfg("mc", _gb.matchCase);
397
- dfg("ec", _gb.equalCase);
398
- dfg("xc", _gb.exactCase);
399
- dfg("tc", _gb.typeCase);
400
- dfg("cc", _gb.classCase);
401
- dfg("kc", _gb.kindCase);
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
- dfg("cp", _gb.copy);
406
- dfg("mk", _gb.mock);
407
- dfg("mm", _gb.mimic);
408
- dfg("tw", _gb.twin);
409
- dfg("cn", _gb.clone);
409
+ const cp = copy;
410
+ const mk = mock;
411
+ const mm = mimic;
412
+ const tw = twin;
413
+ const cn = clone;
410
414
 
411
- dfg("pc", _gb.patch);
412
- dfg("ow", _gb.overwrite);
413
- dfg("tk", _gb.takeover);
414
- dfg("aq", _gb.acquire);
415
- dfg("ih", _gb.inherit);
415
+ const pc = patch;
416
+ const ow = overwrite;
417
+ const tk = takeover;
418
+ const aq = acquire;
419
+ const ih = inherit;
416
420
 
417
- dfg("rv", _gb.revert);
421
+ const rv = revert;
418
422
 
419
423
 
420
424
  /** run handle */
421
- dfg("pq", _gb.postQueue);
422
- dfg("pd", _gb.postDelayed);
423
- dfg("pp", _gb.postPromise);
424
- dfg("pb", _gb.postBonded);
425
- dfg("ppq", _gb.postPromiseQueue);
426
- dfg("paq", _gb.postAsyncQueue);
427
- dfg("pwq", _gb.postAwaitQueue);
428
- dfg("pfq", _gb.postFrameQueue);
429
- dfg("pfp", _gb.postFramePromise);
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
- dfg("dsp", _gb.defineStaticProperty);
434
- dfg("dp", _gb.defineProperty);
435
- dfg("dpx", _gb.definePropertyPlex);
436
- dfg("dspgs", _gb.defineStaticGetterAndSetter);
437
- dfg("dpgs", _gb.defineGetterAndSetter);
438
- dfg("dpgsx", _gb.defineGetterAndSetterPlex);
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
- defineStaticGetterAndSetter(dt, "n", function () { return new Date(...arguments); });
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 _gb.matchCase(this.it, ...arguments); });
450
- definePropertyPlex("ec", function () { return _gb.equalCase(this.it, ...arguments); });
451
- definePropertyPlex("xc", function () { return _gb.exactCase(this.it, ...arguments); });
452
- definePropertyPlex("tc", function () { return _gb.typeCase(this.it, ...arguments); });
453
- definePropertyPlex("cc", function () { return _gb.classCase(this.it, ...arguments); });
454
- definePropertyPlex("kc", function () { return _gb.kindCase(this.it, ...arguments); });
455
-
456
- definePropertyPlex("ee", function (process = it => it, ornot = it => it, numberEmptyMatch = 0) { return _gb.isEmpty(this.it, numberEmptyMatch) ? process(this.it) : ornot(this.it); });
457
- definePropertyPlex("ne", function (process = it => it, ornot = it => it, numberEmptyMatch = 0) { return _gb.isNotEmpty(this.it, numberEmptyMatch) ? process(this.it) : ornot(this.it); });
458
-
459
- definePropertyPlex("dr", function (does = (it, args) => {}, returns, args = []) { return _gb.doAndReturn(does, returns, [this.it, ...args]); });
460
- definePropertyPlex("drx", function (does = (it, args) => {}, forReturns, args = []) { return _gb.doAndReturnByExecute(does, forReturns, [this.it, ...args]); });
461
-
462
- defineGetterAndSetter(obj, "ok", function () { return _gb.keysOf(this.it); });
463
- defineGetterAndSetter(obj, "ov", function () { return _gb.valuesOf(this.it); });
464
- defineGetterAndSetter(obj, "oe", function () { return _gb.entriesOf(this.it); });
465
- defineGetterAndSetter(obj, "oc", function () { return _gb.countOf(this.it); });
466
- defineGetterAndSetter(obj, "occ", function () { return _gb.checkCount(this.it, (k, v) => true); });
467
-
468
- defineProperty(obj, "fk", function (work = key => { return false; }) { return _gb.forof(this.it.ways, work); });
469
- defineProperty(obj, "fv", function (work = value => { return false; }) { return _gb.forof(this.it.looks, work); });
470
- defineProperty(obj, "fe", function (work = (key, value) => { return false; }) { return _gb.forkv(this.it.entire, work); });
471
- defineProperty(obj, "fkv", function (work = (key, value) => { return false; }) { return _gb.forkv(this.it.entire, work); });
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 _gb.copy(this, dataOnly, primitiveOnly, recusive); });
478
- defineGetterAndSetter(obj, "mk", function () { return _gb.mock(this); });
479
- defineGetterAndSetter(obj, "mm", function () { return _gb.mimic(this); });
480
- defineGetterAndSetter(obj, "tw", function () { return _gb.twin(this); });
481
- defineGetterAndSetter(obj, "cl", function () { return _gb.clone(this); });
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 _gb.patch(this.it, from, dataOnly, primitiveOnly, recusive, append); });
484
- defineProperty(obj, "ow", function (from) { return _gb.overwrite(this.it, from); });
485
- defineProperty(obj, "to", function (from) { return _gb.takeover(this.it, from); });
486
- defineProperty(obj, "aq", function (from) { return _gb.acquire(this.it, from); });
487
- defineProperty(obj, "ih", function (from) { return _gb.inherit(this.it, from); });
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 _gb.revert(this.it, from, dataOnly, primitiveOnly, recusive, exceptNew); });
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 => _gb.executeIf(it == that, process, [it], ornot)); });
492
- definePropertyPlex("ifneq", function (that, process = it => it, ornot = it => {}) { return this.let(it => _gb.executeIf(it != that, process, [it], ornot)); });
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 (this.it.H % 12).let(it => it == 0 ? 12 : it); });
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 + this.it.Zmm; });
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 + this.it.M0; });
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
- // Regex builder alias
579
- dfg("rx", (regex, flags) => new RegExp(regex, flags));
580
- dfg("reg", _gb.rx);
581
- dfg("ri", regex => new RegExp(regex, "i"));
582
- dfg("rg", regex => new RegExp(regex, "g"));
583
- dfg("rm", regex => new RegExp(regex, "m"));
584
- dfg("rig", regex => new RegExp(regex, "ig"));
585
- dfg("rim", regex => new RegExp(regex, "im"));
586
- dfg("rgm", regex => new RegExp(regex, "gm"));
587
- dfg("rigm", regex => new RegExp(regex, "igm"));
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.5.2",
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.5.2"
7
+ "modernism": "^0.7.0"
8
8
  },
9
9
  "scripts": {
10
10
  "test": "echo \"Error: no test specified\" && exit 1"