-
Notifications
You must be signed in to change notification settings - Fork 55
/
index.mjs
20696 lines (19449 loc) · 473 KB
/
index.mjs
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
var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
function getAugmentedNamespace(n) {
var f = n.default;
if (typeof f == "function") {
var a = function () {
return f.apply(this, arguments);
};
a.prototype = f.prototype;
} else a = {};
Object.defineProperty(a, '__esModule', {value: true});
Object.keys(n).forEach(function (k) {
var d = Object.getOwnPropertyDescriptor(n, k);
Object.defineProperty(a, k, d.get ? d : {
enumerable: true,
get: function () {
return n[k];
}
});
});
return a;
}
var tpl$2 = {exports: {}};
/*
global define
*/
(function (module, exports) {
!(function () {
let f;
let b = {
open: '{{',
close: '}}'
};
let c = {
exp (a) {
return new RegExp(a, 'g')
},
query (a, c, e) {
let f = ['#([\\s\\S])+?', '([^{#}])*?'][a || 0];
return d((c || '') + b.open + f + b.close + (e || ''))
},
escape (a) {
return String(a || '')
.replace(/&(?!#?[a-zA-Z0-9]+;)/g, '&')
.replace(/</g, '<')
.replace(/>/g, '>')
.replace(/'/g, ''')
.replace(/"/g, '"')
},
error (a, b) {
let c = 'Laytpl Error:';
return typeof console === 'object' && console.error(c + a + '\n' + (b || '')), c + a
}
};
let d = c.exp;
let e = function (a) {
this.tpl = a;
}
;(e.pt = e.prototype),
(e.pt.parse = function (a, e) {
let f = this;
let g = a;
let h = d('^' + b.open + '#', '');
let i = d(b.close + '$', '');
a = a.replace(/\n/g, '\n');
a = a.replace(/\r/g, '\r')
// a=a.replace(/[\n\r\t]/g,"") //\t
;(a = a
.replace(d(b.open + '#'), b.open + '# ')
.replace(d(b.close + '}'), '} ' + b.close)
.replace(/\\/g, '\\\\')
.replace(/(?="|')/g, '\\')
.replace(c.query(), function (a) {
return (a = a.replace(h, '').replace(i, '')), '";' + a.replace(/\\/g, '') + '; view+="'
})
.replace(c.query(1), function (a) {
let c = '"+(';
return a.replace(/\s/g, '') === b.open + b.close
? ''
: ((a = a.replace(d(b.open + '|' + b.close), '')), /^=/.test(a) && ((a = a.replace(/^=/, '')), (c = '"+_escape_(')), c + a.replace(/\\/g, '') + ')+"')
})),
(a = '"use strict";let view = "' + a + '";return view;');
try {
return (f.cache = a = new Function('d, _escape_', a)), a(e, c.escape)
} catch (j) {
return delete f.cache, c.error(j, g)
}
}),
(e.pt.render = function (a, b) {
let e;
let d = this;
return a
? ((e = d.cache
? d.cache(a, c.escape)
: d
.parse(d.tpl, a)
.replaceAll('\n', '\n')
.replaceAll('\r', '\r')),
b ? (b(e), void 0) : e)
: c.error('no data')
}),
(f = function (a) {
return typeof a !== 'string' ? c.error('Template not found') : new e(a)
}),
(f.config = function (a) {
a = a || {};
for (let c in a) {
b[c] = a[c];
}
}),
(f.v = '1.1'),
(module.exports = f)
;
})();
} (tpl$2));
// @ts-check
/**
* @namespace String_prototype
*/
const tpl$1 = tpl$2.exports;
var string$2 = {
render (o) {
/**
* @memberof String_prototype#
* @param {String} o - 渲染模板对象
* @description html模板渲染
* @function render
* @return {string}
* @example
* '<{{d.tag}}></{{d.tag}}>'.render({ tag: 'div' })
* // <div></div>
*/
return tpl$1(this).render(o)
},
fillStr (str, len, pos = 1) {
// 填入什么字符多少位,中文算2个字符,pos1右面,-1左面
/**
* @memberof String_prototype#
* @param {string} str - 填充字符
* @param {number} len - 总长度
* @param {number} pos - 1右面,-1左面
* @description html模板渲染
* @function fillStr
* @return {string}
* @example
* 'bcdef'.fillStr('a', 8, 1)
* // bcdefaaa
*/
const l = (this + '').len();
const s = len - l > 0 ? str.times(len - l) : '';
return ~pos ? this + s : s + this
},
toMoney (p = 3) {
// p精度
/**
* @memberof String_prototype#
* @param {number} p - 精度
* @description 数字转金额显示
* @function toMoney
* @return {string}
* @example
* '-9812345678.45678901'.toMoney(2)
* // '-9,812,345,678.45'
*/
let num = String(this);
num = num.replace(/,/g, '');
// 正负号处理
let symbol = '';
if (/^([-+]).*$/.test(num)) {
symbol = num.replace(/^([-+]).*$/, '$1');
num = num.replace(/^([-+])(.*)$/, '$2');
}
if (/^[-.0-9]+(\.\d+)?$/.test(num)) {
num = num.replace(/^[0]+/g, '');
if (/^\./.test(num)) {
num = '0' + num;
}
let decimal = num.replace(/^\d+(\.\d+)?$/, '$1');
let integer = num.replace(/^(\d+)(\.\d+)?$/, '$1');
const re = /(\d+)(\d{3})/;
while (re.test(integer)) {
integer = integer.replace(re, '$1,$2');
}
if (Number(p)) {
decimal = decimal.substr(0, Number(p) + 1);
}
if (p === 0) {
decimal = '';
}
return symbol + integer + decimal
} else {
return p
}
},
toLow () {
/**
* @memberof String_prototype#
* @description 字符串转小写
* @function toLow
* @return {string}
* @example
* 'AsdF'.toLow()
* // 'asdf'
*/
return this.toLowerCase()
},
toUp () {
/**
* @memberof String_prototype#
* @description 字符串转大写
* @function toUp
* @return {string}
* @example
* 'AsdF'.toUp()
* // 'ASDF'
*/
return this.toUpperCase()
},
toDate () {
let d;
if (/\d{8}/g.test(this)) {
const a = this.split('');
d = a[0] + a[1] + a[2] + a[3] + '-' + +a[4] + +a[5] + '-' + +a[6] + +a[7];
} else {
d = this;
}
d = new Date(d);
return d.toString() === 'Invalid Date' ? -1 : d
},
esHtml () {
/**
* @memberof String_prototype#
* @description 转译成html
* @function esHtml
* @return {string}
* @example
* '&<>'.esHtml()
* // '&<>'
*/
const o = {
'<': '<',
'>': '>',
'&': '&',
'"': '"',
"'": ''',
'\u00a0': ' '
};
return this.replace(/[<>&"'\\ua0]/g, function (s) {
return o[s]
})
},
toHtml () {
/**
* @memberof String_prototype#
* @description html转译
* @function toHtml
* @return {string}
* @example
* '&<>'.toHtml()
* // '&<>'
*/
return this.replace(/</g, '<')
.replace(/>/g, '>')
.replace(/&/g, '&')
.replace(/"/g, '"')
.replace(/ /g, '\u00a0')
},
reHtml () {
/**
* @memberof String_prototype#
* @description html相关元素去掉
* @function reHtml
* @return {string}
* @example
* '<div><a>xx</a><div><div>yy</div>'.reHtml()
* // xxyy
*/
return this.replace(/(<([^>]+)>)/gi, '').replace(/[\r\n]/g, '')
},
times (n) {
// NOTICE: 原生repeat 比times快一个数量级
/**
* @memberof String_prototype#
* @description 字符串重复输出
* @param {number} n - 重复次数
* @function times
* @return {string}
* @example
* 'abc'.times(2)
* // 'abcabc'
*/
if (n <= 0) {
return ''
}
return this.repeat ? this.repeat(n) : new Array(n + 1).join(this)
},
format () {
/**
* @memberof String_prototype#
* @description 字符串格式化替换输出
* @function format
* @return {string}
* @example
* 'a{0}c{1}e{2}g{3}'.format('b', 'd', 'f', 1)
* // 'abcdefg1'
*/
const [s, a] = [this, []];
for (let i = 0, l = arguments.length; i < l; i++) {
a.push(arguments[i]);
}
return s.replace(/\{(\d+)\}/g, function (_, i) {
return a[i] || '{' + i + '}'
})
},
len () {
/**
* @memberof String_prototype#
* @description 字符串占用空间大小
* @function len
* @return {number}
* @example
* '我a'.len()
* // 3
*/
return this.replace(/[^\x00-\xff]/gm, '**').length //eslint-disable-line
},
toInt () {
/**
* @memberof String_prototype#
* @description 转化为int类型
* @function toInt
* @return {number}
* @example
* '12.3'.toInt()
* // 12
*/
return parseInt(this, 10)
},
replaceAll (s1, s2) {
/**
* @memberof String_prototype#
* @description 替换字符串
* @param {string} s1 - 原字符串
* @param {string} s2 - 新字符串
* @function replaceAll
* @return {string}
* @example
* 'aaabbbccc'.replaceAll('b', 'x')
* // 'aaaxxxccc'
*/
const a = this.split(s1);
return a.join(s2)
},
/*
trim () {
@memberof String_prototype#
@description 字符串前后替换空格
@function trim
@return {string}
@example
' x x x '.trim()
// 'x x x'
return this.replace(/^\s+|\s+$/g, '')
},
*/
camelize (split = '-') {
/**
* @memberof String_prototype#
* @description -后字符大写转换一个字符
* @function camelize
* @param {string} split - 分割字符串默认-
* @return {string}
* @example
* 'a-b-c-d-da-d'.camelize()
* // 'aBCDDaD'
*/
return this.replace(new RegExp(`(${split}[a-z])`, 'g'), function (s) {
return s.substring(1).toUpperCase()
})
},
deCamelize (split = '-') {
/**
* @memberof String_prototype#
* @description 反驼峰化
* @param {string} split - 分割字符串默认-
* @function deCamelize
* @return {string}
* @example
* 'aBCDDaD'.deCamelize()
* 'a-b-c-d-da-d'
*/
return this.replace(/([A-Z])/g, `${split}$1`).toLowerCase()
},
ec (s) {
/**
* @memberof String_prototype#
* @description - 判断是否存在s字符串 单独包含 用于class name操作
* @param {string} s - 字符串
* @function ec
* @return {bool}
* @example
* ' as df '.ec('as')
* // true
*/
s = s.trim();
return new RegExp('(^' + s + '\\s)|(\\s' + s + '$)|(\\s' + s + '\\s)|(^' + s + '$)', 'g').test(this)
},
tc (s) {
/**
* @memberof String_prototype#
* @description - 增加 & 删除 s字符串内容 用于class name操作
* @param {string} s - 字符串
* @function tc
* @return {string}
* @example
* ' as df '.tc('as').tc('dd')
* // df dd
*/
s = s.trim();
if (this.ec(s)) {
return this.dc(s)
} else {
return this.ac(s)
}
},
dc (s) {
/**
* @memberof String_prototype#
* @description - 删除 s字符串内容 用于class name操作
* @param {string} s - 字符串
* @function dc
* @return {string}
* @example
* ' as df '.dc('as')
* // df
*/
if (this.ec(s)) {
return this.trim()
.split(s)
.join('')
.replace(/\s{2,}/g, ' ')
.trim()
} else {
return this
}
},
ac (s) {
/**
* @memberof String_prototype#
* @description - 增加 s字符串内容 用于class name操作
* @param {string} s - 字符串
* @function ac
* @return {string}
* @example
* ' as df '.ac('as')
* // df as
*/
return this.trim().dc(s) + ' ' + s
},
upperFirst () {
// 首字母大写
/**
* @memberof String_prototype#
* @description -首字母大写
* @function upperFirst
* @return {string}
* @example
* 'abcd'.upperFirst()
* // 'Abcd'
*/
const s = this.toLowerCase();
return s.replace(/\b(\w)|\s(\w)/g, function (m) {
return m.toUpperCase()
})
}
};
// @ts-check
/**
* @namespace Number_prototype
*/
var number$2 = {
round (p) {
/**
* @memberof Number_prototype#
* @param {number} p - 保留小数点
* @description 四舍五入到某一位
* @function round
* @return {number}
* @example
* 1.123456789.round(6)
* // 1.123457
*/
p = Math.pow(10, p || 0);
return Math.round(this * p) / p
},
prettyBytes (precision = 3, addSpace = true, unit = ['B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'], gap = 1000) {
/**
* @memberof Number_prototype#
* @param {Number} precision - 精度
* @param {Boolean} addSpace - 和单位之间是否有空格
* @param {Array} unit - 单位后缀的数组
* @param {Number} gap - 间隔默认1000
* @description 美化字节输出
* @function prettyBytes
* @return {String}
* @example
* (1000).prettyBytes()
* // 1 KB
*/
if (Math.abs(this) < 1) {
return this.round(precision) + (addSpace ? ' ' : '') + unit[0]
}
const exponent = Math.min(Math.floor(Math.log10(this < 0 ? -this : this) / 3), unit.length - 1);
const n = Number(((this < 0 ? -this : this) / gap ** exponent).toPrecision(precision));
return (this < 0 ? '-' : '') + n + (addSpace ? ' ' : '') + unit[exponent]
},
isPrime () {
/**
* @memberof Number_prototype#
* @description 判断质数
* @function isPrime
* @return {bool}
* @example
* (15).isPrime()
* // false
*/
if (this === 2) {
// 2是质数
return true
} else if (this % 2 === 0) {
// 排除偶数
return false
}
// 依次判断是否能被奇数整除,最大循环为数值的开方
const squareRoot = Math.sqrt(this);
// 因为2已经验证过,所以从3开始;且已经排除偶数,所以每次加2
for (let i = 3; i <= squareRoot; i += 2) {
if (this % i === 0) {
return false
}
}
return true
},
/**
* @memberof Number_prototype#
* @description 同String.fillStr
* @function fillStr
* @return {String}
*/
fillStr: String.prototype.fillStr
};
// @ts-check
// 日期原型扩展
/**
* @namespace Date_prototype
*/
const getYearWeek = function (dateObj, isUTC = false) {
const [a, b, c] = [dateObj[`get${isUTC ? 'UTC' : ''}FullYear`](), dateObj[`get${isUTC ? 'UTC' : ''}Month`]() + 1, dateObj[`get${isUTC ? 'UTC' : ''}Date`]()];
/*
d1是当前日期
d2是当年第一天
d是当前日期是今年第多少天
用d + 当前年的第一天的周差距的和在除以7就是本年第几周
*/
const d1 = new Date(a, parseInt(b) - 1, c);
const d2 = new Date(a, 0, 1);
const d = Math.round((d1.valueOf() - d2.valueOf()) / 86400000);
return Math.ceil((d + (d2.getDay() + 1 - 1)) / 7)
};
const format = function (s = 'yyyy-MM-dd hh:mm:ss', isUTC = false) {
const o = {
'M+': this[`get${isUTC ? 'UTC' : ''}Month`]() + 1, // 月份
'w+': getYearWeek(this, isUTC), // 周
'W+': getYearWeek(this, isUTC), // 周
'd+': this[`get${isUTC ? 'UTC' : ''}Date`](), // 日
'D+': this[`get${isUTC ? 'UTC' : ''}Date`](), // 日
'h+': this[`get${isUTC ? 'UTC' : ''}Hours`](), // 小时
'H+': this[`get${isUTC ? 'UTC' : ''}Hours`](), // 小时
'm+': this[`get${isUTC ? 'UTC' : ''}Minutes`](), // 分
's+': this[`get${isUTC ? 'UTC' : ''}Seconds`](), // 秒
'q+': Math.floor((this[`get${isUTC ? 'UTC' : ''}Month`]() + 3) / 3), // 季度
S: this[`get${isUTC ? 'UTC' : ''}Milliseconds`](), // 毫秒
X: (+this / 1000) | 0 // unix秒
};
let m1 = s.match(/([yY]+)/);
if (m1) {
s = s.replace(m1[0], (this[`get${isUTC ? 'UTC' : ''}FullYear`]() + '').slice(4 - m1[0].length));
}
for (const k in o) {
let m2 = s.match(new RegExp('(' + k + ')'));
if (m2) {
s = s.replace(m2[0], m2[0].length === 1 ? o[k] : ('00' + o[k]).slice(('' + o[k]).length));
}
}
return s
};
const dateOffset = function (interval, number) {
const me = this;
const k = {
y: 'FullYear',
q: 'Month',
M: 'Month',
w: 'Date',
d: 'Date',
h: 'Hours',
m: 'Minutes',
s: 'Seconds',
ms: 'MilliSeconds'
};
const n = {
q: 3,
w: 7
};
me['set' + k[interval]](me['get' + k[interval]]() + (n[interval] || 1) * number);
return me
};
const isLeap = d => new Date(d.getFullYear(), 1, 29).getDate() === 29;
const myDate = {
/**
* @function isLeap
* @description 是否闰年
* @memberof Date_prototype#
* @return {Boolean} 返回 true/false
* @param {Date} d
*/
isLeap () {
return isLeap(this)
},
/**
* @function format
* @type {Function}
* @description 格式化日期
* @memberof Date_prototype#
* @param {string} s - 日期模板 yyyy/YYYY mm/MM ww/WW dd/DD hh/HH mm ss SS(毫秒) q(季度) X(unix秒).
* @return {string} 返回 日期模板的结果.
* @example
* $.now().format('yyyy-MM-dd hh:mm:ss')
* // 2019-6-1 10:19:01
*/
format (s) {
return format.call(this, s)
},
formatUTC (s) {
return format.call(this, s, true)
},
/**
* @function getWeek
* @description 本年的第几周
* @memberof Date_prototype#
* @return {number}
* @param {Date} d
*/
getWeek () {
return getYearWeek(this)
},
/**
* @function getQuarter
* @description 本年的第几季度
* @memberof Date_prototype#
* @return {number}
* @param {Date} d
*/
getQuarter () {
return (Math.log10(2 ** (this.getMonth() + 1)) | 0) + 1
},
/**
* @function date2Str
* @description 格式化日期
* @memberof Date_prototype#
* @param {string} s - 日期模板 yyyy/YYYY mm/MM ww/WW dd/DD hh/HH mm ss SS(毫秒) q(季度) X(unix秒).
* @return {string} 返回 日期模板的结果.
* @example
* $.now().date2Str('yyyy-MM-dd hh:mm:ss')
* // 2019-6-1 10:19:01
*/
date2Str () {
return format.call(this)
},
/**
* @memberof Date_prototype#
* @function date8
* @description 日期格式化8位函数.
* @param {string} s - 分隔符.
* @return {string} 返回 格式化结果.
* @example
* $.now().date8()
* $.date.date8(new Date())
* // 20190601
*/
date8 (s = '') {
let m = this.getMonth() + 1;
let d = this.getDate();
m = m <= 9 ? '0' + m : m;
d = d <= 9 ? '0' + d : d;
s = s || '';
return [this.getFullYear(), m, d].join(s)
},
/**
* @function dateAdd
* @description 日期偏移操作.
* @memberof Date_prototype#
* @param {string} i interval 年月日时分秒周季 yMdhnswq.
* @param {number} n 时间间隔 可正负.
* @return {string} 返回 得到日期年月日等加数字后的日期.
* @example
* $.now().dateAdd('y',-1)
* $.date.dateAdd(new Date())
* // 2018-6-1 10:19:01
*/
dateAdd (i, n) {
return dateOffset.call(this, i, n)
},
/**
* @function offset
* @description 日期偏移操作.
* @memberof Date_prototype#
* @param {string} i interval 年月日时分秒周季 yMdhnswq.
* @param {number} n 时间间隔 可正负.
* @return {string} 返回 得到日期年月日等加数字后的日期.
* @example
* $.now().offset('y',-1)
* $.date.offset(new Date())
* // 2018-6-1 10:19:01
*/
offset (i, n) {
return dateOffset.call(this, i, n)
}
};
var date$2 = myDate;
// @ts-check
/**
* @namespace Function_prototype
*/
var _function = {
/**
* @memberof Function_prototype#
* @param {number} s - 开始的字符串
* @param {number} e - 结束的字符串
* @description 获取函数内部注解
* @function help
* @return {String}
* @example
* (function(){\/* comment1 *\/}).help()
* // 'comment1'
*/
help (s = '/*', e = '*/') {
let l = '' + this;
l = l.substring(l.indexOf(s) + 3, l.lastIndexOf(e));
return l.trim()
}
};
var empty = {};
var empty$1 = /*#__PURE__*/Object.freeze({
__proto__: null,
'default': empty
});
var require$$0 = /*@__PURE__*/getAugmentedNamespace(empty$1);
// @ts-check
/**
* @namespace MathRand
*/
let secRand;
let crypto$3;
const uniformRandInt = (a, b) => {
/**
* @memberof MathRand#
* @description 返回相对均匀的[a,b]之间的整数
* @function uniformRandInt
* @param {Number} a - 范围最小值
* @param {Number} b - 范围最大值
* @return {Number}
* $.tools.rnd(-100, -100)
// -100
*/
let num;
if (a > b) {
[a, b] = [b, a];
}
const maxEx = b + 5;
do {
num = Math.floor(Math.random() * (maxEx - a) + a);
num -= 4;
} while (num < a || num > b)
return num
// return Math.round(Math.random() * (b - a)) + a // NOTICE: 传统方式会造成2端的值不平均
};
const randInt = uniformRandInt;
try {
crypto$3 = require$$0;
} catch (err) {
console.log('crypto support is disabled!');
}
if (crypto$3 !== undefined) {
/*
(1)首先找到样本数据Y的最小值Min及最大值Max
(2)计算系数为:k=(b-a)/(Max-Min)
(3)得到归一化到[a,b)区间的数据:norY=a+k(Y-Min)
*/
secRand = (a, b) => {
const r = crypto$3.randomBytes(4); // 0-4294967295
return Math.floor(((b - a + 1) / 4294967295) * r.readUInt32LE(0)) + a
};
} else {
secRand = uniformRandInt;
}
const E = Math.E;
const PI = Math.PI;
const PI_2 = PI / 2;
const uniformBase = (a, b) => {
/**
* @memberof MathRand#
* @description 返回[a,b)之间的数
* @function uniformBase
* @param {Number} a - 范围最小值
* @param {Number} b - 范围最大值
* @return {Number}
* uniformBase(-1.1, 1.1)
// -1.01
function random(lower, upper) { // [a,b)
return Math.floor(Math.random() * (upper - lower)) + lower
}
function random(lower, upper) { // [a,b]
return Math.floor(Math.random() * (upper - lower + 1)) + lower
}
*/
return a + (b - a) * Math.random()
};
const normal = (mu = 0, sigma = 1) => {
/**
* @memberof MathRand#
* @description 返回 默认参数下 [-无穷大,+无穷大] 在-1.96~+1.96范围内曲线下的面积等于0.9500,在-2.58~+2.58范围内曲线下面积为0.9900
* @function normal
* @param {Number} mu
* @param {Number} sigma
* @return {Number}
* normal()
// -100
*/
let p, p1, p2;
do {
p1 = uniformBase(-1, 1);
p2 = uniformBase(-1, 1);
p = p1 * p1 + p2 * p2;
} while (p >= 1)
return mu + sigma * p1 * Math.sqrt((-2 * Math.log(p)) / p)
};
const arcsine = function (a, b) {
const q = Math.sin(PI_2 * uniformBase(0, 1));
return a + (b - a) * q * q
};
const exponential = function (a, b) {
return a - b * Math.log(uniformBase(0, 1))
};
const gamma = function (a, b, c) {
const A = 1 / Math.sqrt(2 * c - 1);
const B = c - Math.log(4);
const Q = c + 1 / A;
const T = 4.5;
const D = 1 + Math.log(T);
const C = 1 + c / E;
if (c < 1) {
while (true) {
const p = C * uniformBase(0, 1);
if (p > 1) {
const y = -Math.log((C - p) / c);
if (uniformBase(0, 1) <= Math.pow(y, c - 1)) {
return a + b * y
}
} else {
const y = Math.pow(p, 1 / c);
if (uniformBase(0, 1) <= Math.exp(-y)) {
return a + b * y
}
}
}
} else if (parseInt(c, 10) === 1) {
return exponential(a, b)
} else {
while (true) {
const p1 = uniformBase(0, 1);
const p2 = uniformBase(0, 1);
const v = A * Math.log(p1 / (1 - p1));
const y = c * Math.exp(v);
const z = p1 * p1 * p2;
const w = B + Q * v - y;
if (w + D - T * z > 0 || w >= Math.log(z)) {
return a + b * y
}
}
}
};
const beta = function (v, w, min, max) {
if (v < w) {
return max - (max - min) * beta(w, v, 0, 1)
}
const y1 = gamma(0, 1, v);
const y2 = gamma(0, 1, w);
return min + ((max - min) * y1) / (y1 + y2)
};
const cauchy = function (a, b) {
return a + b * Math.tan(PI * uniformBase(-0.5, 0.5))
};
const bernoulli = function (p) {
return uniformBase(0, 1) < p ? 1 : 0
};
const userSpecified = function (usf, xMin, xMax, yMin, yMax) {