forked from SuperMonster003/Ant-Forest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext-global.js
1718 lines (1667 loc) · 74.4 KB
/
ext-global.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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
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
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
let ext = {
Global() {
let _classof = (src, chk) => {
let _s = Object.prototype.toString.call(src).slice(8, -1);
return chk ? _s.toUpperCase() === chk.toUpperCase() : _s;
};
let _keysLen = (o, n) => Object.keys(o).length === n;
let _compare = {
'<': (a, b) => a < b,
'<=': (a, b) => a <= b,
'>': (a, b) => a > b,
'>=': (a, b) => a >= b,
'=': (a, b) => a === b,
};
let _isNum = o => _classof(o, 'Number');
let _isStr = o => _classof(o, 'String');
let _monster = (fn) => {
if (typeof global[fn] === 'function') {
return global[fn].call(global);
}
let _path = files.cwd() + '/modules/mod-monster-func.js';
return files.isFile(_path) ? require(_path)[fn]() : null;
};
Object.assign(global, {
$$0: x => x === 0,
$$1: x => x === 1,
$$2: x => x === 2,
$$num(x) {
let _args = arguments;
let _len = _args.length;
if (_len === 1) {
return _isNum(x);
}
if (_len === 2) {
return x === _args[1];
}
for (let i = 1; i < _len; i += 2) {
let _opr = _args[i]; // operational symbol
if (!_isStr(_opr) || !(_opr in _compare)) {
return false;
}
let _b = _args[i + 1];
if (!_isNum(_b)) {
return false;
}
let _a = _args[i - 1];
if (!_compare[_opr](_a, _b)) {
return false;
}
}
return true;
},
$$str(x) {
let _args = arguments;
let _len = _args.length;
if (_len === 1) {
return _isStr(x);
}
if (_len === 2) {
return x === _args[1];
}
let _args_arr = [];
for (let i = 0; i < _len; i += 1) {
_args_arr[i] = _args[i].toString();
}
for (let i = 1; i < _len; i += 2) {
let _opr = _args_arr[i]; // operational symbol
if (!(_opr in _compare)) {
return false;
}
let _a = _args_arr[i - 1];
let _b = _args_arr[i + 1];
if (!_compare[_opr](_a, _b)) {
return false;
}
}
return true;
},
$$nul: x => x === null,
$$und: x => typeof x === 'undefined',
$$bool: x => typeof x === 'boolean',
$$symb: x => typeof x === 'symbol',
$$bigint: x => typeof x === 'bigint',
$$func: x => typeof x === 'function',
$$arr: x => _classof(x, 'Array'),
$$obj: x => _classof(x, 'Object'),
$$emptyObj: x => _classof(x, 'Object') && _keysLen(x, 0),
$$T: x => x === true,
$$F: x => x === false,
isInfinite: x => !isFinite(x),
isInteger(x) {
// `Number.isInteger(x)` since ES6
return this.$$num(x) && (x | 0) === x;
},
isNullish(x) {
// nullish coalescing operator: ??
return this.$$nul(x) || this.$$und(x);
},
isPrimitive(x) {
// return x !== Object(x);
// dunno code above is okay or not, but i think it's cooler :)
return this.$$num(x) || this.$$str(x) || this.$$bool(x)
|| this.$$nul(x) || this.$$und(x) || this.$$symb(x)
|| this.$$bigint(x);
},
isReference(x) {
return !this.isPrimitive(x);
},
});
/**
* Toast a message in current screen
* @param {string|{toString:function():string}} [msg=''] -
* string (or object with toString method) to toast
* @param {boolean|string|number} [if_long=0] -
* controlling toast duration (falsy for LENGTH_SHORT; truthy for LENGTH_LONG)
* @param {boolean|*} [if_force] -
* controlling whether showing current new toast immediately or not
* @example
* // toast 'Hello' for around 2 seconds
* $$toast('Hello');
* // toast 'Hello' for around 3.5 seconds
* $$toast('Hello', 'Long');
* // toast 'Hello' for around 2 seconds
* // after then toast 'Hello again' for around 3.5 seconds
* $$toast('Hello');
* $$toast('Hello again', 'Long');
* // only toast 'Hello again' for around 3.5 seconds
* // because 'Hello' was cancelled by 'Hello again' immediately
* $$toast('Hello');
* $$toast('Hello again', 'Long', 'Force');
* // toast 'Hello' for around 1 second
* // and then toast 'Hello again' for around 3.5 seconds
* $$toast('Hello');
* sleep(1000);
* $$toast('Hello again', 'Long', 'Force');
* // as you imagined, toast 'Hello' for around 3.5 seconds
* // then toast 'Hello again' for around 3.5 seconds
* $$toast('Hello', 'Long', 'Force');
* $$toast('Hello again', 'Long');
* // only toast 'Hello again' for around 2 seconds
* $$toast('Hello', 'Long', 'Force');
* $$toast('Hello again', 0, 'Force');
*/
global.$$toast = function (msg, if_long, if_force) {
let _nullish = o => o === null || o === undefined;
let _msg = _nullish(msg) ? '' : msg.toString();
let _if_long = (() => {
if (typeof if_long === 'number') {
return +!!if_long;
}
if (typeof if_long === 'string') {
return +!!(if_long.toUpperCase().match(/^L(ONG)?$/));
}
if (typeof if_long === 'boolean') {
return +if_long;
}
return 0;
})();
let _s_handler = new android.os.Handler(
android.os.Looper.getMainLooper()
);
_s_handler.post(new java.lang.Runnable({
run() {
if (if_force && global['_toast_']) {
global['_toast_'].cancel();
global['_toast_'] = null;
}
global['_toast_'] = android.widget.Toast.makeText(
context, _msg, _if_long
);
global['_toast_'].show();
},
}));
};
/**
* Invoke some functions (returns undefined or $$link only) one by one
* @param {function} f
* @param {{}} [this_arg]
* @example
* let a = () => console.log('A');
* let s = () => console.log('S');
* let d = () => console.log('D');
* let f = () => console.log('F');
* a(), s(), d(), f();
* $$link(a).$(s).$(d).$(f); // same as above
* $$link(a)(s)(d)(f); // same as above
* @example
* let a = () => console.log(1);
* function b() {return 2};
* let c = () => 'ok';
* function d() {void 0};
* // with two groups of warning messages printed in console
* $$link(a).$(b).$(c).$(d);
*/
global.$$link = function (f, this_arg) {
if (typeof f !== 'function') {
throw TypeError('$$link invoked with a non-function param');
}
if (typeof $$link.$ !== 'function') {
$$link.$ = (f, this_arg) => $$link(f, this_arg);
}
let _res = f.call(this_arg);
if (_res !== $$link && typeof _res !== 'undefined') {
console.warn('fx in $$link returns non-undefined');
console.warn('-> name: ' + (f.name || '<anonymous>'));
console.warn('-> returns: ' + _res);
}
return $$link;
};
/**
* Substitution of sleep(millis:number):void
* @param {number} [millis_min=0] - inclusive
* @param {number|string|'±n'} [millis_max=millis_min] - inclusive also
* @example
* $$sleep(1e3); // same as sleep(1e3);
* $$sleep(1e3, 2e3); // sleep for 1000 (inclusive) to 2000 (inclusive) milliseconds
* $$sleep(1e3, '±300'); // sleep for 700 (inclusive) to 1300 (inclusive) milliseconds
* $$sleep(1e3, '300'); // same as above
* @returns {void}
*/
global.$$sleep = function (millis_min, millis_max) {
if (typeof millis_max === 'string') {
let _matched = millis_max.match(/\d+(e\d+)?/);
if (_matched) {
let _delta = Number(_matched[0]);
millis_max = Math.min(millis_min + _delta, Number.MAX_SAFE_INTEGER);
millis_min = Math.max(millis_min - _delta, 0);
}
}
if (typeof millis_max === 'number') {
return sleep(millis_min + Math.floor(Math.random() * (millis_max - millis_min + 1)));
}
return sleep(Math.max(millis_min, 0));
};
/** @type ExtendedSelector & UiSelector$ */
global.$$sel = _monster('getSelector');
global.$$cvt = _cvtBuilder();
global.okhttp3 = Packages.okhttp3;
// tool function(s) //
function _cvtBuilder() {
/**
* @typedef {number|string} $$cvt$src
* @typedef {string} $$cvt$init_unit
* @typedef {{
* step?: number, potential_step?: number,
* space?: string|boolean, fixed?: number,
* units?: (number|number[]|string)[], init_unit?: 'string',
* }} $$cvt$options
*/
/**
* @param {$$cvt$src} src
* @param {$$cvt$options} [options]
* @example
* console.log($$cvt(24, {
* units: ['entries', 12, 'dozens'], space: true,
* })); // '2 dozens'
* @returns {string}
*/
let $_cvt = function (src, options) {
let {
step: _step, potential_step: _pot_step,
units: _units_ori, init_unit: _init_unit,
space: _space, fixed: _fixed,
} = options || {};
let _src = typeof src === 'string'
? Number(src.split(/,\s*/).join(''))
: Number(src);
let _units = [];
_units_ori.forEach((o) => {
if (typeof o === 'string' && o.match(/\w+\|\w+/)) {
o.split('|').reverse().forEach((u, i) => {
i ? _units.push(1, u) : _units.push(u);
});
} else {
_units.push(o);
}
});
let unit_map = {};
unit_map[_units[0]] = [1, 1];
let _accu_step = 1;
let _tmp_pot_val;
for (let i = 1, l = _units.length; i < l; i += 1) {
_tmp_pot_val = _pot_step ? _accu_step : 0;
let _unit = _units[i];
if (typeof _unit === 'number') {
_tmp_pot_val = _accu_step * (_pot_step || _unit);
_accu_step *= _unit;
_unit = _units[++i];
} else if (Array.isArray(_unit)) {
let _steps = _unit.sort((a, b) => a < b ? 1 : -1);
_tmp_pot_val = _accu_step * _steps[1];
_accu_step *= _steps[0];
_unit = _units[++i];
} else {
_tmp_pot_val = _accu_step * (_pot_step || _step);
_accu_step *= _step;
}
_unit.split('|').forEach(u => unit_map[u] = _tmp_pot_val
? [_accu_step, _tmp_pot_val] : [_accu_step, _accu_step]
);
}
let _init_u = _init_unit || _units[0];
if (~_units.indexOf(_init_u)) {
_src *= unit_map[_init_u][0];
}
let _result = '';
Object.keys(unit_map).reverse().some((u) => {
let [_unit_val, _pot_val] = unit_map[u];
if (_src >= _pot_val) {
let res = Number((_src / _unit_val).toFixed(12));
if (typeof _fixed === 'number') {
res = ~_fixed ? res.toFixed(_fixed) : res;
} else if (res * 1e3 >> 0 !== res * 1e3) {
res = res.toFixed(2);
}
let _space_str = _space ? _space === true ? ' ' : _space : '';
return _result = Number(res) + _space_str + u;
}
});
return _result;
};
/**
* Auto-conversion between different digital storage units (smaller to greater)
* @param {$$cvt$src} src
* @param {$$cvt$init_unit|'B'|'KB'|'MB'|'GB'|'TB'|'PB'|'EB'|'ZB'|'YB'} [init_unit='B']
* @param {$$cvt$options} [options]
* @example
* console.log($$cvt.bytes(1024)); // '1KB'
* console.log($$cvt.bytes(1024, 'B')); // '1KB'
* console.log($$cvt.bytes(1024, 'MB')); // '1GB'
* console.log($$cvt.bytes(1047285512)); // '998.77MB'
* console.log($$cvt.bytes(1067285512)); // '0.99GB'
* console.log($$cvt.bytes(1516171819)); // '1.41GB'
* @returns {string}
*/
$_cvt.bytes = function (src, init_unit, options) {
return _parse(src, init_unit, options, {
step: 1024, potential_step: 1000,
units: ['B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'],
});
};
/**
* Auto-conversion between different time units (smaller to greater)
* @param {$$cvt$src} src
* @param {$$cvt$init_unit|'ms'|'s'|'m'|'h'|'d'} [init_unit='ms']
* @param {$$cvt$options} [options]
* @example
* console.log($$cvt.time(3.6e6)); // '1h'
* console.log($$cvt.time(3.6e6, 'ms')); // '1h'
* console.log($$cvt.time(3.6e3, 's')); // '1h'
* console.log($$cvt.time(3.6e6, 's')); // '41.67d'
* console.log($$cvt.time(48, 'h')); // '2d'
* console.log($$cvt.time(150, 'm')); // '2.5h'
* @example
* console.log('About ' + $$cvt.time(Date.now() - new Date(2019, 2, 19), 'ms', {fixed: 0})
* + ' since Mar 19, 2019'); // like: 'About 591d since Mar 19, 2019'
* @returns {string}
*/
$_cvt.time = function (src, init_unit, options) {
return _parse(src, init_unit, options, {
step: 60,
units: ['ms', 1e3, 's', 'm', 'h', 24, 'd'],
});
};
/**
* Auto-conversion between different linear units (smaller to greater)
* @param {$$cvt$src} src
* @param {$$cvt$init_unit|'am'|'fm'|'pm'|'nm'|'μm'|'um'|'mm'|'cm'|'dm'|'m'|'km'} [init_unit='mm']
* @param {$$cvt$options} [options]
* @example
* console.log($$cvt.linear(10)); // '1cm'
* console.log($$cvt.linear(100)); // '1dm'
* console.log($$cvt.linear(1000)); // '1m'
* console.log($$cvt.linear(10000)); // '10m'
* console.log($$cvt.linear(1e6)); // '1km'
* console.log($$cvt.linear(2299, 'mm')); // '2.299m'
* console.log($$cvt.linear(2299, 'cm')); // '22.99m'
* console.log($$cvt.linear(2299, 'dm')); // '229.9m'
* console.log($$cvt.linear(2299, 'm')); // '2.299km'
* @returns {string}
*/
$_cvt.linear = function (src, init_unit, options) {
return _parse(src, init_unit, options, {
step: 1e3, init_unit: 'mm',
units: ['am', 'fm', 'pm', 'nm', 'μm|um', 'mm', 10, 'cm', 10, 'dm', 10, 'm', 'km'],
});
};
/**
* Auto-conversion between different linear units (smaller to greater)
* @param {$$cvt$src} src
* @param {
* $$cvt$init_unit|'one'|'hundred'|'thousand'|'million'|'billion'|'trillion'|
* 'quadrillion'|'quintillion'|'sextillion'|'septillion'|'octillion'|
* 'nonillion'|'decillion'|'undecillion'|'duodecillion'|'tredecillion'|
* 'quattuordecillion'|'quindecillion'
* } [init_unit='one']
* @param {$$cvt$options} [options]
* @example
* console.log($$cvt.number(Math.pow(2, 10))); // '1.024 thousand'
* console.log($$cvt.number(Math.pow(2, 20))); // '1.05 million'
* console.log($$cvt.number(Math.pow(2, 30))); // '1.07 billion'
* console.log($$cvt.number(Math.pow(2, 40))); // '1.1 trillion'
* @returns {string}
*/
$_cvt.number = function (src, init_unit, options) {
return _parse(src, init_unit, options, {
step: 1e3, space: true,
units: ['one', 100, 'hundred', 10, 'thousand', 'million', 'billion',
'trillion', 'quadrillion', 'quintillion', 'sextillion', 'septillion',
'octillion', 'nonillion', 'decillion', 'undecillion', 'duodecillion',
'tredecillion', 'quattuordecillion', 'quindecillion'],
});
};
/**
* @function $$cvt.date
* @param {Date|string|number} [src=Date()]
* @param {'d'|'dd'|'h'|'h:m'|'h:m:s'|'h:m:ss'|'h:mm'|'h:mm:s'|'h:mm:ss'|'hh'|'hh:m'|'hh:m:s'|'hh:m:ss'|'hh:mm'|'hh:mm:s'|'hh:mm:ss'|'M'|'m'|'M/d h:m'|'M/d h:m:s'|'M/d h:m:ss'|'M/d h:mm'|'M/d h:mm:s'|'M/d h:mm:ss'|'M/d hh:m'|'M/d hh:m:s'|'M/d hh:m:ss'|'M/d hh:mm'|'M/d hh:mm:s'|'M/d hh:mm:ss'|'M/d'|'M/dd h:m'|'M/dd h:m:s'|'M/dd h:m:ss'|'M/dd h:mm'|'M/dd h:mm:s'|'M/dd h:mm:ss'|'M/dd hh:m'|'M/dd hh:m:s'|'M/dd hh:m:ss'|'M/dd hh:mm'|'M/dd hh:mm:s'|'M/dd hh:mm:ss'|'M/dd'|'m:s'|'m:ss'|'MM'|'mm'|'MM/d h:m'|'MM/d h:m:s'|'MM/d h:m:ss'|'MM/d h:mm'|'MM/d h:mm:s'|'MM/d h:mm:ss'|'MM/d hh:m'|'MM/d hh:m:s'|'MM/d hh:m:ss'|'MM/d hh:mm'|'MM/d hh:mm:s'|'MM/d hh:mm:ss'|'MM/d'|'MM/dd h:m'|'MM/dd h:m:s'|'MM/dd h:m:ss'|'MM/dd h:mm'|'MM/dd h:mm:s'|'MM/dd h:mm:ss'|'MM/dd hh:m'|'MM/dd hh:m:s'|'MM/dd hh:m:ss'|'MM/dd hh:mm'|'MM/dd hh:mm:s'|'MM/dd hh:mm:ss'|'MM/dd'|'mm:s'|'mm:ss'|'s'|'ss'|'yy'|'yy/M'|'yy/M/d h:m'|'yy/M/d h:m:s'|'yy/M/d h:m:ss'|'yy/M/d h:mm'|'yy/M/d h:mm:s'|'yy/M/d h:mm:ss'|'yy/M/d hh:m'|'yy/M/d hh:m:s'|'yy/M/d hh:m:ss'|'yy/M/d hh:mm'|'yy/M/d hh:mm:s'|'yy/M/d hh:mm:ss'|'yy/M/d'|'yy/M/dd h:m'|'yy/M/dd h:m:s'|'yy/M/dd h:m:ss'|'yy/M/dd h:mm'|'yy/M/dd h:mm:s'|'yy/M/dd h:mm:ss'|'yy/M/dd hh:m'|'yy/M/dd hh:m:s'|'yy/M/dd hh:m:ss'|'yy/M/dd hh:mm'|'yy/M/dd hh:mm:s'|'yy/M/dd hh:mm:ss'|'yy/M/dd'|'yy/MM'|'yy/MM/d h:m'|'yy/MM/d h:m:s'|'yy/MM/d h:m:ss'|'yy/MM/d h:mm'|'yy/MM/d h:mm:s'|'yy/MM/d h:mm:ss'|'yy/MM/d hh:m'|'yy/MM/d hh:m:s'|'yy/MM/d hh:m:ss'|'yy/MM/d hh:mm'|'yy/MM/d hh:mm:s'|'yy/MM/d hh:mm:ss'|'yy/MM/d'|'yy/MM/dd h:m'|'yy/MM/dd h:m:s'|'yy/MM/dd h:m:ss'|'yy/MM/dd h:mm'|'yy/MM/dd h:mm:s'|'yy/MM/dd h:mm:ss'|'yy/MM/dd hh:m'|'yy/MM/dd hh:m:s'|'yy/MM/dd hh:m:ss'|'yy/MM/dd hh:mm'|'yy/MM/dd hh:mm:s'|'yy/MM/dd hh:mm:ss'|'yy/MM/dd'|'yyyy'|'yyyy/M'|'yyyy/M/d h:m'|'yyyy/M/d h:m:s'|'yyyy/M/d h:m:ss'|'yyyy/M/d h:mm'|'yyyy/M/d h:mm:s'|'yyyy/M/d h:mm:ss'|'yyyy/M/d hh:m'|'yyyy/M/d hh:m:s'|'yyyy/M/d hh:m:ss'|'yyyy/M/d hh:mm'|'yyyy/M/d hh:mm:s'|'yyyy/M/d hh:mm:ss'|'yyyy/M/d'|'yyyy/M/dd h:m'|'yyyy/M/dd h:m:s'|'yyyy/M/dd h:m:ss'|'yyyy/M/dd h:mm'|'yyyy/M/dd h:mm:s'|'yyyy/M/dd h:mm:ss'|'yyyy/M/dd hh:m'|'yyyy/M/dd hh:m:s'|'yyyy/M/dd hh:m:ss'|'yyyy/M/dd hh:mm'|'yyyy/M/dd hh:mm:s'|'yyyy/M/dd hh:mm:ss'|'yyyy/M/dd'|'yyyy/MM'|'yyyy/MM/d h:m'|'yyyy/MM/d h:m:s'|'yyyy/MM/d h:m:ss'|'yyyy/MM/d h:mm'|'yyyy/MM/d h:mm:s'|'yyyy/MM/d h:mm:ss'|'yyyy/MM/d hh:m'|'yyyy/MM/d hh:m:s'|'yyyy/MM/d hh:m:ss'|'yyyy/MM/d hh:mm'|'yyyy/MM/d hh:mm:s'|'yyyy/MM/d hh:mm:ss'|'yyyy/MM/d'|'yyyy/MM/dd h:m'|'yyyy/MM/dd h:m:s'|'yyyy/MM/dd h:m:ss'|'yyyy/MM/dd h:mm'|'yyyy/MM/dd h:mm:s'|'yyyy/MM/dd h:mm:ss'|'yyyy/MM/dd hh:m'|'yyyy/MM/dd hh:m:s'|'yyyy/MM/dd hh:m:ss'|'yyyy/MM/dd hh:mm'|'yyyy/MM/dd hh:mm:s'|'yyyy/MM/dd hh:mm:ss'|'yyyy/MM/dd'|string} [format='yyyy/MM/dd hh:mm:ss']
*/
$_cvt.date = function (src, format) {
let _pad = n => ('0' + n).slice(-2);
let _date = _parseDate(src || new Date());
let _yyyy = _date.getFullYear();
let _yy = _yyyy.toString().slice(-2);
let _M = _date.getMonth() + 1;
let _MM = _pad(_M);
let _d = _date.getDate();
let _dd = _pad(_d);
let _h = _date.getHours();
let _hh = _pad(_h);
let _m = _date.getMinutes();
let _mm = _pad(_m);
let _s = _date.getSeconds();
let _ss = _pad(_s);
let _units = {
yyyy: _yyyy, yy: _yy,
MM: _MM, M: _M,
dd: _dd, d: _d,
hh: _hh, h: _h,
mm: _mm, m: _m,
ss: _ss, s: _s,
};
return _parseFormat(format || 'yyyy/MM/dd hh:mm:ss');
// tool function(s) //
function _parseDate(t) {
if (t instanceof Date) {
return t;
}
if (typeof t === 'number') {
return new Date(t);
}
if (typeof t === 'string') {
if (t.match(/^\d+$/)) {
if (t.length === 8) {
// take as date
// like '20110523' -> '2011/05/23 00:00:00'
t = t.replace(/\d{2}/g, '$&%').split('%').slice(0, -1).map((s, i) => {
return i > 1 ? '/' + s : s;
}).join('');
} else if (t.length === 12) {
// take as short year and full time
// like '110523163208' -> '2011/05/23 16:32:08'
t = t.replace(/\d{2}/g, '$&%').split('%').slice(0, -1).map((s, i) => {
return i === 0
? new Date().getFullYear().toString().slice(0, 2) + s
: i < 3 ? '/' + s : i === 3 ? ' ' + s : i < 6 ? ':' + s : s;
}).join('');
} else if (t.length === 14) {
// take as full date and full time
// like '20110523163208' -> '2011/05/23 16:32:08'
t = t.replace(/\d{2}/g, '$&%').split('%').slice(0, -1).map((s, i) => {
return i > 1 && i < 4
? '/' + s : i === 4
? ' ' + s : i > 4 && i < 7
? ':' + s : s;
}).join('');
}
}
let _date = new Date(t);
if (_date.toString() === 'Invalid Date') {
throw Error('Invalid Date');
}
return _date;
}
return new Date();
}
function _parseFormat(str) {
let _str = str.toString();
let _res = '';
while (_str.length) {
let _max = 4;
while (_max) {
let _unit = _str.slice(0, _max);
if (_unit in _units) {
_res += _units[_unit];
_str = _str.slice(_max);
break;
}
_max -= 1;
}
if (!_max) {
_res += _str[0];
_str = _str.slice(1);
}
}
return _res;
}
};
/**
* Returns parsed url with a data object
* @param {string} src
* @param {{}} [data]
* @param {string|string[]} [exclude]
* @example
* // 'http://abc.com?apple=9&pear=3&others=&buyer=003&message=thx'
* console.log($$cvt.url('http://abc.com', {
* apple: 9,
* pear: 3,
* others: {
* buyer: '003',
* message: 'thx',
* },
* }));
* @returns {string}
*/
$_cvt.url = function (src, data, exclude) {
if (!src) {
throw Error('Source url is required for $$cvt.url()');
}
if (!data) {
return src;
}
let _sep = src.match(/\?/) ? '&' : '?';
return src + _sep + _parseObj(data);
// tool function(s) //
function _parseObj(o) {
let _exclude = exclude || [];
if (!Array.isArray(_exclude)) {
_exclude = [_exclude];
}
return Object.keys(o).map((key) => {
let _val = o[key];
if (typeof _val === 'object') {
_val = '&' + _parseObj(_val);
}
if (!_exclude.includes(key)) {
_val = encodeURI(_val);
}
return key + '=' + _val;
}).join('&');
}
};
return $_cvt;
// tool function(s) //
function _parse(src, init_unit, options, presets) {
return $_cvt(src, Object.assign(
init_unit === undefined ? {} : {init_unit: init_unit},
presets || {}, options || {}
));
}
}
},
String() {
if (!String.prototype.toTitleCase) {
Object.defineProperty(String.prototype, 'toTitleCase', {
/**
* Converts all the alphabetic characters in a string to title case.
* @function String.prototype.toTitleCase
* @example
* console.log('hello'.toTitleCase()); // 'Hello'
* console.log('hello world'.toTitleCase()); // 'Hello World'
* console.log('JavaScript is AMAZING'.toTitleCase()); // 'JavaScript Is AMAZING'
* @returns {string}
*/
value() {
return this.replace(/(^|\s+)([a-z])/g, ($0, $1, $2) => $1 + $2.toUpperCase());
},
});
}
if (!String.prototype.padStart) {
/**
* Pads the current string with a given string to reach a given length (left padding).
* @function String.prototype.padStart
* @param {number} target_len
* @param {string|number} [pad_str=' ']
* @returns {string}
*/
Object.defineProperty(String.prototype, 'padStart', {
value(target_len, pad_str) {
return _getPadStr.apply(this, arguments) + this.valueOf();
},
});
}
if (!String.prototype.padEnd) {
Object.defineProperty(String.prototype, 'padEnd', {
/**
* Pads the current string with a given string to reach a given length (right padding).
* @function String.prototype.padEnd
* @param {number} target_len
* @param {string|number} [pad_str=' ']
* @returns {string}
*/
value(target_len, pad_str) {
return this.valueOf() + _getPadStr.apply(this, arguments);
},
});
}
if (!String.prototype.trimStart) {
Object.defineProperty(String.prototype, 'trimStart', {
/**
* Removes the leading white space and line terminator characters from a string.
* @function String.prototype.trimStart
* @returns {string}
*/
value() {
return String.prototype.trimLeft.apply(this, arguments);
},
});
}
if (!String.prototype.trimEnd) {
Object.defineProperty(String.prototype, 'trimEnd', {
/**
* Removes the trailing white space and line terminator characters from a string.
* @function String.prototype.trimEnd
* @returns {string}
*/
value() {
return String.prototype.trimRight.apply(this, arguments);
},
});
}
if (!String.prototype.ts) {
Object.defineProperty(String.prototype, 'ts', {
/**
* A simple polyfill which takes current string as template string
* @property String.prototype.ts
* @example
* // `name` must be an global variable
* let name = 'John';
* // backticks can't be omitted
* console.log('`Hello ${name}, time is ${new Date().toLocaleTimeString()}`'.ts);
* @example
* console.log('`9 × 2 = ${9 * 2}`'.ts); // '9 × 2 = 18'
* console.log('`9 ÷ 2 = ${9 / 2}`'.ts); // '9 ÷ 2 = 4.5'
* @example
* global.SEX = 'M', global.NAME = 'John';
* console.log('`Hello ${global.SEX[0] === 'M' ? 'Mr.' : 'Mrs.'} ${global.NAME}`'.ts);
* @example
* let A = 'a', B = 'b', C = 'c'; // global variables
* console.log('`${A} and ${B} or ${C}`'.ts); // 'a and b or c'
* console.log('`${A + ` and ${B + ` or ${C}`}`}`'.ts); // 'a and b or c'
* @returns {string}
*/
get() {
let _s = String(this);
let _bt = '`'; // backtick
if (_s.length < 2 || _s[0] !== _bt || _s[_s.length - 1] !== _bt) {
return _s;
}
let _backticks, _is_internal;
while ((_backticks = _getBackticks(_s))) {
let [_l, _r] = _backticks; // left/right index
let _q = _is_internal ? '"' : ''; // quotation mark
_s = _s.slice(0, _l++) + _q + _parse(_s.slice(_l, _r++)) + _q + _s.slice(_r);
}
return _s;
// tool function(s) //
function _getBackticks(str) {
let _bts = [];
Object.values(str).forEach((s, i) => s === _bt && _bts.push(i));
let _half_len = _bts.length / 2;
if (_half_len >> 0 !== _half_len) {
throw Error('Backticks must come in pairs');
}
_is_internal = _half_len > 1;
return _half_len ? _bts.slice(_half_len - 1, _half_len + 1) : null;
}
function _parse(str) {
return str.replace(/\${(.*?)}/g, ($0, $1) => Function('return ' + $1)());
}
},
configurable: true,
});
}
// tool function(s) //
function _getPadStr(target_len, pad_str) {
let _tar_len = Number(target_len);
let _this_len = this.length;
if (_tar_len <= _this_len) {
return '';
}
let _pad_str = pad_str === undefined ? ' ' : String(pad_str);
let _gap = _tar_len - _this_len;
let _times = Math.ceil(_gap / _pad_str.length);
return _pad_str.repeat(_times).slice(0, _gap);
}
},
Object() {
if (!Object.values) {
Object.defineProperty(Object, 'values', {
/**
* @function Object.values
* @param {Iterable|Object} o
* @returns {*[]}
*/
value(o) {
if (o[Symbol['iterator']] !== undefined) {
let _res = [];
for (let v of o) {
_res.push(v);
}
return _res;
}
return Object.keys(o).map(k => o[k]);
},
});
}
if (!Object.size) {
Object.defineProperty(Object, 'size', {
/**
* @summary Object.keys(o).length
* @function Object.size
* @param {Object} o
* @param {Object} [opt] - additional options
* @param {string[]} [opt.exclude] - exclude specified keys
* @param {string[]} [opt.include] - include specified keys ONLY, and o.exclude will be invalid
* @returns {number}
*/
value(o, opt) {
if (typeof o !== 'object') {
return 0;
}
let _opt = opt || {};
let _inc = _opt.include;
let _exc = _opt.exclude;
let _cnt = 0;
for (let i in o) {
if (o.hasOwnProperty(i)) {
if (_inc) {
if (~_inc.indexOf(i)) {
_cnt += 1;
}
continue;
}
if (_exc) {
if (~_exc.indexOf(i)) {
continue;
}
}
_cnt += 1;
}
}
return _cnt;
},
});
}
if (!Object.getOwnNonEnumerableNames) {
Object.defineProperty(Object, 'getOwnNonEnumerableNames', {
/**
* @function Object.getOwnNonEnumerableNames
* @param o
* @returns {string[]}
*/
value: o => Object.getOwnPropertyNames(o)
.filter(n => !o.propertyIsEnumerable(n)),
});
}
if (!Object.getNonEnumerableNames) {
Object.defineProperty(Object, 'getNonEnumerableNames', {
/**
* @function Object.getNonEnumerableNames
* @param o
* @returns {string[]}
*/
value(o) {
let _o = o;
let _res = {};
while (_o !== null) {
Object.getOwnNonEnumerableNames(_o).forEach((n) => {
_res[n] = _res[n] || true;
});
_o = Object.getPrototypeOf(_o);
}
return Object.keys(_res);
},
});
}
if (!Object.getAllPropertyNames) {
Object.defineProperty(Object, 'getAllPropertyNames', {
/**
* @function Object.getAllPropertyNames
* @param o
* @returns {string[]}
*/
value(o) {
let _o = o;
let _res = {};
while (_o !== null) {
Object.getOwnPropertyNames(_o).forEach((n) => {
_res[n] = _res[n] || true;
});
_o = Object.getPrototypeOf(_o);
}
return Object.keys(_res);
},
});
}
if (!Object.getOwnPropertyDescriptors) {
Object.defineProperty(Object, 'getOwnPropertyDescriptors', {
/**
* @function Object.getOwnPropertyDescriptors
* @param o
* @returns {Object.<string,PropertyDescriptor>} <!-- or {PropertyDescriptorMap} -->
*/
value(o) {
let _descriptor = {};
Object.getOwnPropertyNames(o).forEach((k) => {
_descriptor[k] = Object.getOwnPropertyDescriptor(o, k);
});
return _descriptor;
},
});
}
if (!Object.assignDescriptors) {
Object.defineProperty(Object, 'assignDescriptors', {
/**
* @function Object.assignDescriptors
* @param {{}} o
* @param {...{}} descriptors
* @example
* let o = {
* a: 1,
* b: () => null,
* get d() {return Date.now()},
* };
* let p = Object.create(null, {
* a: {value: () => null},
* b: {value: 2020, enumerable: true},
* c: {get() {return Date.now()}},
* e: {get() {return Number(Math.random().toFixed(2))}},
* });
* log(Object.assignDescriptors(o, {}, p, {}, Object.defineProperty({}, 'd', {get() {return new Date()}})));
* log(o.a, o.b, o.c, o.d, o.e);
*/
value(o, descriptors) {
if (descriptors !== undefined) {
let _args = [].slice.call(arguments);
let _i = _args.length;
while (_i-- > 1) {
let _descriptors = Object.getOwnPropertyDescriptors(_args[_i]);
Object.defineProperties(o, _descriptors);
}
}
return o;
},
});
}
if (!Object.prototype.__proto__) {
Object.defineProperty(Object.prototype, '__proto__', {
/** @type {object|null} */
get() {
return Object.getPrototypeOf(Object(this));
},
/** @type {object|null} */
set(proto) {
if (Object(proto) !== proto) {
throw TypeError('Proto must be an non-primitive type');
}
this.__proto__ = proto;
},
configurable: true,
});
}
},
Array() {
if (!Array.from) {
// code from polyfill on the web page below
// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/from
// modified by SuperMonster003 at Sep 21, 2020
Array.from = function (arrayLike, mapFn, thisArg) {
let isFunc = f => typeof f === 'function';
let toInt = v => isNaN(Number(v)) ? 0 : Math.trunc(v);
let items = Object(arrayLike);
if (arrayLike === undefined || arrayLike === null) {
throw TypeError('arrayLike of Array.from must be an array-like object');
}
if (mapFn !== undefined && !isFunc(mapFn)) {
throw TypeError('mapFn of Array.from must be a function or undefined');
}
let len = Math.min(Math.max(toInt(items.length), 0), Number.MAX_SAFE_INTEGER);
let arr = isFunc(this) ? Object(new this(len)) : new Array(len);
let self = thisArg === undefined ? this : thisArg;
for (let i = 0; i < len; i += 1) {
arr[i] = mapFn ? mapFn.call(self, items[i], i) : items[i];
}
arr.length = len;
return arr;
};
}
if (!Array.prototype.includes) {
Object.defineProperty(Array.prototype, 'includes', {
value(x, i) {
return this.slice(i).some((v) => {
if (typeof x !== 'undefined') {
return Number.isNaN(x) ? Number.isNaN(v) : x === v;
}
});
},
});
}
if (!Array.prototype.fill) {
Object.defineProperty(Array.prototype, 'fill', {
value(v, start, end) {
let _len = this.length;
let _a = start >> 0;
_a = _a < 0 ? _a + _len : _a > _len ? _len : _a;
let _b = end === undefined ? _len : end >> 0;
_b = _b < 0 ? _b + _len : _b > _len ? _len : _b;
for (let i = _a; i < _b; i += 1) {
this[i] = v;
}
return this;
},
});
}
if (!Array.prototype.keys) {
/** @returns {IterableIterator<number>} */
Array.prototype.keys = function () {
let _it_keys = this.map((v, i) => i)[Symbol.iterator];
return _it_keys();
};
}
if (!Array.prototype.values) {
// noinspection JSCheckFunctionSignatures
/** @returns {IterableIterator<any>} */
Array.prototype.values = function () {
return this[Symbol.iterator]();
};
}
if (!Array.prototype.entries) {
/** @returns {IterableIterator<[number, any]>} */
Array.prototype.entries = function () {
let _it_entries = this.map((v, i) => [i, v])[Symbol.iterator];
return _it_entries();
};
}
},
Number() {
if (!Number.prototype.ICU) {
Object.defineProperty(Number.prototype, 'ICU', {
/**
* 996.ICU - Developers' lives matter
* @name ICU
* @memberOf! Number#
* @constant 996
* @type number
* @example
* (1).ICU; // 996
* (80).ICU; // 996