clientnode 4.0.1504 → 4.0.1506
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Lock.js +8 -27
- package/dist/Logger.js +34 -85
- package/dist/Semaphore.js +8 -27
- package/dist/array.js +10 -48
- package/dist/bundle/index.js +424 -440
- package/dist/cli.d.ts +1 -31
- package/dist/cli.js +77 -32
- package/dist/compatible/Lock.js +8 -27
- package/dist/compatible/Logger.js +34 -85
- package/dist/compatible/Semaphore.js +8 -27
- package/dist/compatible/array.js +10 -48
- package/dist/compatible/cli.js +77 -32
- package/dist/compatible/constants.js +11 -29
- package/dist/compatible/context.js +29 -57
- package/dist/compatible/cookie.js +27 -58
- package/dist/compatible/data-transfer.js +29 -61
- package/dist/compatible/datetime.js +41 -68
- package/dist/compatible/domNode.js +27 -59
- package/dist/compatible/expression/evaluators.js +41 -60
- package/dist/compatible/expression/helper.js +8 -31
- package/dist/compatible/expression/index.js +45 -85
- package/dist/compatible/expression/indicator-functions.js +10 -44
- package/dist/compatible/filesystem.js +29 -57
- package/dist/compatible/function.js +8 -32
- package/dist/compatible/index.js +98 -115
- package/dist/compatible/indicators.js +10 -41
- package/dist/compatible/module.js +27 -50
- package/dist/compatible/number.js +10 -36
- package/dist/compatible/object.js +39 -65
- package/dist/compatible/process.js +27 -55
- package/dist/compatible/scope.js +58 -146
- package/dist/compatible/string.js +39 -68
- package/dist/compatible/test-helper.js +10 -35
- package/dist/compatible/utility.js +27 -55
- package/dist/constants.d.ts +31 -0
- package/dist/constants.js +11 -29
- package/dist/context.js +29 -57
- package/dist/cookie.js +27 -58
- package/dist/data-transfer.js +29 -61
- package/dist/datetime.js +41 -68
- package/dist/domNode.js +27 -59
- package/dist/expression/evaluators.js +41 -60
- package/dist/expression/helper.js +8 -31
- package/dist/expression/index.js +45 -85
- package/dist/expression/indicator-functions.js +10 -44
- package/dist/filesystem.js +29 -57
- package/dist/function.js +8 -32
- package/dist/index.js +98 -115
- package/dist/indicators.js +10 -41
- package/dist/module.js +27 -50
- package/dist/number.js +10 -36
- package/dist/object.js +39 -65
- package/dist/process.js +27 -55
- package/dist/scope.js +58 -146
- package/dist/string.d.ts +5 -4
- package/dist/string.js +39 -68
- package/dist/test-helper.js +10 -35
- package/dist/type.d.ts +1 -1
- package/dist/utility.js +27 -55
- package/package.json +4 -4
package/dist/bundle/index.js
CHANGED
|
@@ -71,7 +71,7 @@ module.exports = !fails(function () {
|
|
|
71
71
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
72
72
|
|
|
73
73
|
|
|
74
|
-
var NATIVE_BIND = __webpack_require__(
|
|
74
|
+
var NATIVE_BIND = __webpack_require__(19);
|
|
75
75
|
|
|
76
76
|
var FunctionPrototype = Function.prototype;
|
|
77
77
|
var call = FunctionPrototype.call;
|
|
@@ -91,7 +91,7 @@ module.exports = NATIVE_BIND ? uncurryThisWithBind : function (fn) {
|
|
|
91
91
|
|
|
92
92
|
|
|
93
93
|
var uncurryThis = __webpack_require__(4);
|
|
94
|
-
var toObject = __webpack_require__(
|
|
94
|
+
var toObject = __webpack_require__(53);
|
|
95
95
|
|
|
96
96
|
var hasOwnProperty = uncurryThis({}.hasOwnProperty);
|
|
97
97
|
|
|
@@ -108,10 +108,10 @@ module.exports = Object.hasOwn || function hasOwn(it, key) {
|
|
|
108
108
|
/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
|
|
109
109
|
|
|
110
110
|
|
|
111
|
-
var $ = __webpack_require__(
|
|
112
|
-
var $includes = (__webpack_require__(
|
|
111
|
+
var $ = __webpack_require__(40);
|
|
112
|
+
var $includes = (__webpack_require__(59)/* .includes */ .m);
|
|
113
113
|
var fails = __webpack_require__(1);
|
|
114
|
-
var addToUnscopables = __webpack_require__(
|
|
114
|
+
var addToUnscopables = __webpack_require__(65);
|
|
115
115
|
|
|
116
116
|
// FF99+ bug
|
|
117
117
|
var BROKEN_ON_SPARSE = fails(function () {
|
|
@@ -155,10 +155,10 @@ module.exports = function (it) {
|
|
|
155
155
|
|
|
156
156
|
|
|
157
157
|
var DESCRIPTORS = __webpack_require__(3);
|
|
158
|
-
var IE8_DOM_DEFINE = __webpack_require__(
|
|
159
|
-
var V8_PROTOTYPE_DEFINE_BUG = __webpack_require__(
|
|
158
|
+
var IE8_DOM_DEFINE = __webpack_require__(30);
|
|
159
|
+
var V8_PROTOTYPE_DEFINE_BUG = __webpack_require__(33);
|
|
160
160
|
var anObject = __webpack_require__(9);
|
|
161
|
-
var toPropertyKey = __webpack_require__(
|
|
161
|
+
var toPropertyKey = __webpack_require__(23);
|
|
162
162
|
|
|
163
163
|
var $TypeError = TypeError;
|
|
164
164
|
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
@@ -226,6 +226,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
226
226
|
Iy: function() { return /* binding */ ABBREVIATIONS; },
|
|
227
227
|
Vx: function() { return /* binding */ ANIMATION_END_EVENT_NAMES; },
|
|
228
228
|
rq: function() { return /* binding */ CLASS_TO_TYPE_MAPPING; },
|
|
229
|
+
l_: function() { return /* binding */ CLI_COLOR; },
|
|
229
230
|
jG: function() { return /* binding */ CLOSE_EVENT_NAMES; },
|
|
230
231
|
jg: function() { return /* binding */ CONSOLE_METHODS; },
|
|
231
232
|
uJ: function() { return /* binding */ DEFAULT_ENCODING; },
|
|
@@ -332,7 +333,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
332
333
|
naming 3.0 unported license.
|
|
333
334
|
See https://creativecommons.org/licenses/by/3.0/deed.de
|
|
334
335
|
endregion
|
|
335
|
-
*/var DEFAULT_ENCODING="utf8";var CLOSE_EVENT_NAMES=["close","exit","SIGINT","SIGTERM","SIGQUIT","uncaughtException"];var CONSOLE_METHODS=["debug","error","info","log","warn"];var VALUE_COPY_SYMBOL=Symbol.for("clientnodeValue");var IGNORE_NULL_AND_UNDEFINED_SYMBOL=Symbol.for("clientnodeIgnoreNullAndUndefined");// Lists all known abbreviation for proper camel case to delimited and back
|
|
336
|
+
*/var CLI_COLOR={black:"\x1B[30m",blink:"\x1B[5m",blue:"\x1B[0;34m",bold:"\x1B[1m",cyan:"\x1B[36m",darkGray:"\x1B[0;90m",default:"\x1B[0m",dim:"\x1B[2m",green:"\x1B[32m",invert:"\x1B[7m",invisible:"\x1B[8m",lightBlue:"\x1B[0;94m",lightCyan:"\x1B[0;96m",lightGray:"\x1B[0;37m",lightGreen:"\x1B[0;92m",lightMagenta:"\x1B[0;95m",lightRed:"\x1B[0;91m",lightYellow:"\x1B[0;93m",magenta:"\x1B[35m",nodim:"\x1B[22m",noblink:"\x1B[25m",nobold:"\x1B[21m",noinvert:"\x1B[27m",noinvisible:"\x1B[28m",nounderline:"\x1B[24m",red:"\x1B[31m",underline:"\x1B[4m",white:"\x1B[37m",yellow:"\x1B[33m"};var DEFAULT_ENCODING="utf8";var CLOSE_EVENT_NAMES=["close","exit","SIGINT","SIGTERM","SIGQUIT","uncaughtException"];var CONSOLE_METHODS=["debug","error","info","log","warn"];var VALUE_COPY_SYMBOL=Symbol.for("clientnodeValue");var IGNORE_NULL_AND_UNDEFINED_SYMBOL=Symbol.for("clientnodeIgnoreNullAndUndefined");// Lists all known abbreviation for proper camel case to delimited and back
|
|
336
337
|
// conversion.
|
|
337
338
|
var ABBREVIATIONS=["html","id","url","us","de","api","href"];// Saves a string with all css3 browser specific animation end event names.
|
|
338
339
|
var ANIMATION_END_EVENT_NAMES="animationend webkitAnimationEnd oAnimationEnd MSAnimationEnd";// String representation to object type name mapping.
|
|
@@ -347,8 +348,8 @@ var TRANSITION_END_EVENT_NAMES="transitionend webkitTransitionEnd oTransitionEnd
|
|
|
347
348
|
|
|
348
349
|
|
|
349
350
|
// toObject with fallback for non-array-like ES3 strings
|
|
350
|
-
var IndexedObject = __webpack_require__(
|
|
351
|
-
var requireObjectCoercible = __webpack_require__(
|
|
351
|
+
var IndexedObject = __webpack_require__(42);
|
|
352
|
+
var requireObjectCoercible = __webpack_require__(21);
|
|
352
353
|
|
|
353
354
|
module.exports = function (it) {
|
|
354
355
|
return IndexedObject(requireObjectCoercible(it));
|
|
@@ -360,7 +361,7 @@ module.exports = function (it) {
|
|
|
360
361
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
361
362
|
|
|
362
363
|
|
|
363
|
-
var NATIVE_BIND = __webpack_require__(
|
|
364
|
+
var NATIVE_BIND = __webpack_require__(19);
|
|
364
365
|
|
|
365
366
|
var call = Function.prototype.call;
|
|
366
367
|
// eslint-disable-next-line es/no-function-prototype-bind -- safe
|
|
@@ -391,7 +392,7 @@ module.exports = function (namespace, method) {
|
|
|
391
392
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
392
393
|
|
|
393
394
|
|
|
394
|
-
var IS_PURE = __webpack_require__(
|
|
395
|
+
var IS_PURE = __webpack_require__(52);
|
|
395
396
|
var globalThis = __webpack_require__(0);
|
|
396
397
|
var defineGlobalProperty = __webpack_require__(15);
|
|
397
398
|
|
|
@@ -431,14 +432,6 @@ module.exports = function (key, value) {
|
|
|
431
432
|
/***/ (function(module) {
|
|
432
433
|
|
|
433
434
|
|
|
434
|
-
module.exports = {};
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
/***/ }),
|
|
438
|
-
/* 17 */
|
|
439
|
-
/***/ (function(module) {
|
|
440
|
-
|
|
441
|
-
|
|
442
435
|
// IE8- don't enum bug keys
|
|
443
436
|
module.exports = [
|
|
444
437
|
'constructor',
|
|
@@ -452,7 +445,7 @@ module.exports = [
|
|
|
452
445
|
|
|
453
446
|
|
|
454
447
|
/***/ }),
|
|
455
|
-
/*
|
|
448
|
+
/* 17 */
|
|
456
449
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
457
450
|
|
|
458
451
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -494,7 +487,7 @@ currentRequire=createRequire("file:///__w/clientnode/clientnode/src/module.ts");
|
|
|
494
487
|
}catch(error){throw error}finally{restoreRequireCache(requireFunction.cache,backup)}};var optionalImport=/*#__PURE__*/function(){var _optionalImport=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee2(id,options){var _t2,_t3;return _regenerator().w(function(_context2){while(1)switch(_context2.p=_context2.n){case 0:if(options===void 0){options={}}_context2.p=1;if(!isImportSyntaxSupported()){_context2.n=3;break}_context2.n=2;return new Function("options","return import('".concat(id,"', options)"))(options);case 2:_t2=_context2.v;_context2.n=5;break;case 3:_context2.n=4;return Promise.resolve(null);case 4:_t2=_context2.v;case 5:return _context2.a(2,_t2);case 6:_context2.p=6;_t3=_context2.v;_context2.n=7;return Promise.resolve(null);case 7:return _context2.a(2,_context2.v)}},_callee2,null,[[1,6]])}));function optionalImport(_x,_x2){return _optionalImport.apply(this,arguments)}return optionalImport}();
|
|
495
488
|
|
|
496
489
|
/***/ }),
|
|
497
|
-
/*
|
|
490
|
+
/* 18 */
|
|
498
491
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
499
492
|
|
|
500
493
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -521,12 +514,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
521
514
|
/* harmony export */ });
|
|
522
515
|
/* harmony import */ var core_js_modules_es_array_includes_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(6);
|
|
523
516
|
/* harmony import */ var core_js_modules_es_array_includes_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_includes_js__WEBPACK_IMPORTED_MODULE_0__);
|
|
524
|
-
/* harmony import */ var core_js_modules_es_regexp_flags_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
517
|
+
/* harmony import */ var core_js_modules_es_regexp_flags_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(82);
|
|
525
518
|
/* harmony import */ var core_js_modules_es_regexp_flags_js__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_regexp_flags_js__WEBPACK_IMPORTED_MODULE_1__);
|
|
526
519
|
/* harmony import */ var _constants_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(10);
|
|
527
|
-
/* harmony import */ var _indicators_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
528
|
-
/* harmony import */ var _number_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
|
|
529
|
-
/* harmony import */ var _string_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(
|
|
520
|
+
/* harmony import */ var _indicators_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(71);
|
|
521
|
+
/* harmony import */ var _number_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(72);
|
|
522
|
+
/* harmony import */ var _string_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(73);
|
|
530
523
|
// #!/usr/bin/env babel-node
|
|
531
524
|
// -*- coding: utf-8 -*-
|
|
532
525
|
/** @module object *//* !
|
|
@@ -773,7 +766,7 @@ result=object;if((0,_indicators_js__WEBPACK_IMPORTED_MODULE_3__/* .isPlainObject
|
|
|
773
766
|
*/var _unwrapProxy=function unwrapProxy(object,seenObjects){if(seenObjects===void 0){seenObjects=new Set}if((0,_indicators_js__WEBPACK_IMPORTED_MODULE_3__/* .isObject */ .Gv)(object)){if(seenObjects.has(object))return object;try{if((0,_indicators_js__WEBPACK_IMPORTED_MODULE_3__/* .isFunction */ .Tn)(object.__revoke__)){if((0,_indicators_js__WEBPACK_IMPORTED_MODULE_3__/* .isProxy */ .ju)(object))object=object.__target__;object.__revoke__()}}catch(_unused){return object}finally{seenObjects.add(object)}if(Array.isArray(object)){var index=0;var _iterator34=_createForOfIteratorHelper(object),_step34;try{for(_iterator34.s();!(_step34=_iterator34.n()).done;){var value=_step34.value;object[index]=_unwrapProxy(value,seenObjects);index+=1}}catch(err){_iterator34.e(err)}finally{_iterator34.f()}}else if((0,_indicators_js__WEBPACK_IMPORTED_MODULE_3__/* .isMap */ .jh)(object)){var _iterator35=_createForOfIteratorHelper(object),_step35;try{for(_iterator35.s();!(_step35=_iterator35.n()).done;){var _step35$value=_slicedToArray(_step35.value,2),key=_step35$value[0],_value18=_step35$value[1];object.set(key,_unwrapProxy(_value18,seenObjects))}}catch(err){_iterator35.e(err)}finally{_iterator35.f()}}else if((0,_indicators_js__WEBPACK_IMPORTED_MODULE_3__/* .isSet */ .vM)(object)){var cache=[];var _iterator36=_createForOfIteratorHelper(object),_step36;try{for(_iterator36.s();!(_step36=_iterator36.n()).done;){var _value20=_step36.value;object.delete(_value20);cache.push(_unwrapProxy(_value20,seenObjects))}}catch(err){_iterator36.e(err)}finally{_iterator36.f()}for(var _i29=0,_cache4=cache;_i29<_cache4.length;_i29++){var _value19=_cache4[_i29];object.add(_value19)}}else for(var _i30=0,_Object$entries16=Object.entries(object);_i30<_Object$entries16.length;_i30++){var _Object$entries16$_i=_slicedToArray(_Object$entries16[_i30],2),_key11=_Object$entries16$_i[0],_value21=_Object$entries16$_i[1];object[_key11]=_unwrapProxy(_value21,seenObjects)}}return object};
|
|
774
767
|
|
|
775
768
|
/***/ }),
|
|
776
|
-
/*
|
|
769
|
+
/* 19 */
|
|
777
770
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
778
771
|
|
|
779
772
|
|
|
@@ -788,7 +781,7 @@ module.exports = !fails(function () {
|
|
|
788
781
|
|
|
789
782
|
|
|
790
783
|
/***/ }),
|
|
791
|
-
/*
|
|
784
|
+
/* 20 */
|
|
792
785
|
/***/ (function(module) {
|
|
793
786
|
|
|
794
787
|
|
|
@@ -803,11 +796,11 @@ module.exports = function (bitmap, value) {
|
|
|
803
796
|
|
|
804
797
|
|
|
805
798
|
/***/ }),
|
|
806
|
-
/*
|
|
799
|
+
/* 21 */
|
|
807
800
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
808
801
|
|
|
809
802
|
|
|
810
|
-
var isNullOrUndefined = __webpack_require__(
|
|
803
|
+
var isNullOrUndefined = __webpack_require__(22);
|
|
811
804
|
|
|
812
805
|
var $TypeError = TypeError;
|
|
813
806
|
|
|
@@ -820,7 +813,7 @@ module.exports = function (it) {
|
|
|
820
813
|
|
|
821
814
|
|
|
822
815
|
/***/ }),
|
|
823
|
-
/*
|
|
816
|
+
/* 22 */
|
|
824
817
|
/***/ (function(module) {
|
|
825
818
|
|
|
826
819
|
|
|
@@ -832,12 +825,12 @@ module.exports = function (it) {
|
|
|
832
825
|
|
|
833
826
|
|
|
834
827
|
/***/ }),
|
|
835
|
-
/*
|
|
828
|
+
/* 23 */
|
|
836
829
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
837
830
|
|
|
838
831
|
|
|
839
|
-
var toPrimitive = __webpack_require__(
|
|
840
|
-
var isSymbol = __webpack_require__(
|
|
832
|
+
var toPrimitive = __webpack_require__(44);
|
|
833
|
+
var isSymbol = __webpack_require__(24);
|
|
841
834
|
|
|
842
835
|
// `ToPropertyKey` abstract operation
|
|
843
836
|
// https://tc39.es/ecma262/#sec-topropertykey
|
|
@@ -848,14 +841,14 @@ module.exports = function (argument) {
|
|
|
848
841
|
|
|
849
842
|
|
|
850
843
|
/***/ }),
|
|
851
|
-
/*
|
|
844
|
+
/* 24 */
|
|
852
845
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
853
846
|
|
|
854
847
|
|
|
855
848
|
var getBuiltIn = __webpack_require__(13);
|
|
856
849
|
var isCallable = __webpack_require__(2);
|
|
857
|
-
var isPrototypeOf = __webpack_require__(
|
|
858
|
-
var USE_SYMBOL_AS_UID = __webpack_require__(
|
|
850
|
+
var isPrototypeOf = __webpack_require__(45);
|
|
851
|
+
var USE_SYMBOL_AS_UID = __webpack_require__(25);
|
|
859
852
|
|
|
860
853
|
var $Object = Object;
|
|
861
854
|
|
|
@@ -868,12 +861,12 @@ module.exports = USE_SYMBOL_AS_UID ? function (it) {
|
|
|
868
861
|
|
|
869
862
|
|
|
870
863
|
/***/ }),
|
|
871
|
-
/*
|
|
864
|
+
/* 25 */
|
|
872
865
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
873
866
|
|
|
874
867
|
|
|
875
868
|
/* eslint-disable es/no-symbol -- required for testing */
|
|
876
|
-
var NATIVE_SYMBOL = __webpack_require__(
|
|
869
|
+
var NATIVE_SYMBOL = __webpack_require__(26);
|
|
877
870
|
|
|
878
871
|
module.exports = NATIVE_SYMBOL &&
|
|
879
872
|
!Symbol.sham &&
|
|
@@ -881,12 +874,12 @@ module.exports = NATIVE_SYMBOL &&
|
|
|
881
874
|
|
|
882
875
|
|
|
883
876
|
/***/ }),
|
|
884
|
-
/*
|
|
877
|
+
/* 26 */
|
|
885
878
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
886
879
|
|
|
887
880
|
|
|
888
881
|
/* eslint-disable es/no-symbol -- required for testing */
|
|
889
|
-
var V8_VERSION = __webpack_require__(
|
|
882
|
+
var V8_VERSION = __webpack_require__(46);
|
|
890
883
|
var fails = __webpack_require__(1);
|
|
891
884
|
var globalThis = __webpack_require__(0);
|
|
892
885
|
|
|
@@ -906,16 +899,16 @@ module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
|
|
|
906
899
|
|
|
907
900
|
|
|
908
901
|
/***/ }),
|
|
909
|
-
/*
|
|
902
|
+
/* 27 */
|
|
910
903
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
911
904
|
|
|
912
905
|
|
|
913
906
|
var globalThis = __webpack_require__(0);
|
|
914
|
-
var shared = __webpack_require__(
|
|
907
|
+
var shared = __webpack_require__(28);
|
|
915
908
|
var hasOwn = __webpack_require__(5);
|
|
916
|
-
var uid = __webpack_require__(
|
|
917
|
-
var NATIVE_SYMBOL = __webpack_require__(
|
|
918
|
-
var USE_SYMBOL_AS_UID = __webpack_require__(
|
|
909
|
+
var uid = __webpack_require__(29);
|
|
910
|
+
var NATIVE_SYMBOL = __webpack_require__(26);
|
|
911
|
+
var USE_SYMBOL_AS_UID = __webpack_require__(25);
|
|
919
912
|
|
|
920
913
|
var Symbol = globalThis.Symbol;
|
|
921
914
|
var WellKnownSymbolsStore = shared('wks');
|
|
@@ -931,7 +924,7 @@ module.exports = function (name) {
|
|
|
931
924
|
|
|
932
925
|
|
|
933
926
|
/***/ }),
|
|
934
|
-
/*
|
|
927
|
+
/* 28 */
|
|
935
928
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
936
929
|
|
|
937
930
|
|
|
@@ -945,7 +938,7 @@ module.exports = function (key, value) {
|
|
|
945
938
|
|
|
946
939
|
|
|
947
940
|
/***/ }),
|
|
948
|
-
/*
|
|
941
|
+
/* 29 */
|
|
949
942
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
950
943
|
|
|
951
944
|
|
|
@@ -961,13 +954,13 @@ module.exports = function (key) {
|
|
|
961
954
|
|
|
962
955
|
|
|
963
956
|
/***/ }),
|
|
964
|
-
/*
|
|
957
|
+
/* 30 */
|
|
965
958
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
966
959
|
|
|
967
960
|
|
|
968
961
|
var DESCRIPTORS = __webpack_require__(3);
|
|
969
962
|
var fails = __webpack_require__(1);
|
|
970
|
-
var createElement = __webpack_require__(
|
|
963
|
+
var createElement = __webpack_require__(31);
|
|
971
964
|
|
|
972
965
|
// Thanks to IE8 for its funny defineProperty
|
|
973
966
|
module.exports = !DESCRIPTORS && !fails(function () {
|
|
@@ -979,7 +972,7 @@ module.exports = !DESCRIPTORS && !fails(function () {
|
|
|
979
972
|
|
|
980
973
|
|
|
981
974
|
/***/ }),
|
|
982
|
-
/*
|
|
975
|
+
/* 31 */
|
|
983
976
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
984
977
|
|
|
985
978
|
|
|
@@ -996,13 +989,13 @@ module.exports = function (it) {
|
|
|
996
989
|
|
|
997
990
|
|
|
998
991
|
/***/ }),
|
|
999
|
-
/*
|
|
992
|
+
/* 32 */
|
|
1000
993
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1001
994
|
|
|
1002
995
|
|
|
1003
996
|
var DESCRIPTORS = __webpack_require__(3);
|
|
1004
997
|
var definePropertyModule = __webpack_require__(8);
|
|
1005
|
-
var createPropertyDescriptor = __webpack_require__(
|
|
998
|
+
var createPropertyDescriptor = __webpack_require__(20);
|
|
1006
999
|
|
|
1007
1000
|
module.exports = DESCRIPTORS ? function (object, key, value) {
|
|
1008
1001
|
return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));
|
|
@@ -1013,7 +1006,7 @@ module.exports = DESCRIPTORS ? function (object, key, value) {
|
|
|
1013
1006
|
|
|
1014
1007
|
|
|
1015
1008
|
/***/ }),
|
|
1016
|
-
/*
|
|
1009
|
+
/* 33 */
|
|
1017
1010
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1018
1011
|
|
|
1019
1012
|
|
|
@@ -1032,7 +1025,7 @@ module.exports = DESCRIPTORS && fails(function () {
|
|
|
1032
1025
|
|
|
1033
1026
|
|
|
1034
1027
|
/***/ }),
|
|
1035
|
-
/*
|
|
1028
|
+
/* 34 */
|
|
1036
1029
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1037
1030
|
|
|
1038
1031
|
|
|
@@ -1041,9 +1034,9 @@ var fails = __webpack_require__(1);
|
|
|
1041
1034
|
var isCallable = __webpack_require__(2);
|
|
1042
1035
|
var hasOwn = __webpack_require__(5);
|
|
1043
1036
|
var DESCRIPTORS = __webpack_require__(3);
|
|
1044
|
-
var CONFIGURABLE_FUNCTION_NAME = (__webpack_require__(
|
|
1045
|
-
var inspectSource = __webpack_require__(
|
|
1046
|
-
var InternalStateModule = __webpack_require__(
|
|
1037
|
+
var CONFIGURABLE_FUNCTION_NAME = (__webpack_require__(77)/* .CONFIGURABLE */ .i2);
|
|
1038
|
+
var inspectSource = __webpack_require__(55);
|
|
1039
|
+
var InternalStateModule = __webpack_require__(78);
|
|
1047
1040
|
|
|
1048
1041
|
var enforceInternalState = InternalStateModule.enforce;
|
|
1049
1042
|
var getInternalState = InternalStateModule.get;
|
|
@@ -1093,12 +1086,12 @@ Function.prototype.toString = makeBuiltIn(function toString() {
|
|
|
1093
1086
|
|
|
1094
1087
|
|
|
1095
1088
|
/***/ }),
|
|
1096
|
-
/*
|
|
1089
|
+
/* 35 */
|
|
1097
1090
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1098
1091
|
|
|
1099
1092
|
|
|
1100
|
-
var shared = __webpack_require__(
|
|
1101
|
-
var uid = __webpack_require__(
|
|
1093
|
+
var shared = __webpack_require__(28);
|
|
1094
|
+
var uid = __webpack_require__(29);
|
|
1102
1095
|
|
|
1103
1096
|
var keys = shared('keys');
|
|
1104
1097
|
|
|
@@ -1107,6 +1100,14 @@ module.exports = function (key) {
|
|
|
1107
1100
|
};
|
|
1108
1101
|
|
|
1109
1102
|
|
|
1103
|
+
/***/ }),
|
|
1104
|
+
/* 36 */
|
|
1105
|
+
/***/ (function(module) {
|
|
1106
|
+
|
|
1107
|
+
|
|
1108
|
+
module.exports = {};
|
|
1109
|
+
|
|
1110
|
+
|
|
1110
1111
|
/***/ }),
|
|
1111
1112
|
/* 37 */
|
|
1112
1113
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
@@ -1115,8 +1116,8 @@ module.exports = function (key) {
|
|
|
1115
1116
|
var uncurryThis = __webpack_require__(4);
|
|
1116
1117
|
var hasOwn = __webpack_require__(5);
|
|
1117
1118
|
var toIndexedObject = __webpack_require__(11);
|
|
1118
|
-
var indexOf = (__webpack_require__(
|
|
1119
|
-
var hiddenKeys = __webpack_require__(
|
|
1119
|
+
var indexOf = (__webpack_require__(59)/* .indexOf */ .q);
|
|
1120
|
+
var hiddenKeys = __webpack_require__(36);
|
|
1120
1121
|
|
|
1121
1122
|
var push = uncurryThis([].push);
|
|
1122
1123
|
|
|
@@ -1139,47 +1140,7 @@ module.exports = function (object, names) {
|
|
|
1139
1140
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1140
1141
|
|
|
1141
1142
|
|
|
1142
|
-
var
|
|
1143
|
-
var toAbsoluteIndex = __webpack_require__(62);
|
|
1144
|
-
var lengthOfArrayLike = __webpack_require__(64);
|
|
1145
|
-
|
|
1146
|
-
// `Array.prototype.{ indexOf, includes }` methods implementation
|
|
1147
|
-
var createMethod = function (IS_INCLUDES) {
|
|
1148
|
-
return function ($this, el, fromIndex) {
|
|
1149
|
-
var O = toIndexedObject($this);
|
|
1150
|
-
var length = lengthOfArrayLike(O);
|
|
1151
|
-
if (length === 0) return !IS_INCLUDES && -1;
|
|
1152
|
-
var index = toAbsoluteIndex(fromIndex, length);
|
|
1153
|
-
var value;
|
|
1154
|
-
// Array#includes uses SameValueZero equality algorithm
|
|
1155
|
-
// eslint-disable-next-line no-self-compare -- NaN check
|
|
1156
|
-
if (IS_INCLUDES && el !== el) while (length > index) {
|
|
1157
|
-
value = O[index++];
|
|
1158
|
-
// eslint-disable-next-line no-self-compare -- NaN check
|
|
1159
|
-
if (value !== value) return true;
|
|
1160
|
-
// Array#indexOf ignores holes, Array#includes - not
|
|
1161
|
-
} else for (;length > index; index++) {
|
|
1162
|
-
if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
|
|
1163
|
-
} return !IS_INCLUDES && -1;
|
|
1164
|
-
};
|
|
1165
|
-
};
|
|
1166
|
-
|
|
1167
|
-
module.exports = {
|
|
1168
|
-
// `Array.prototype.includes` method
|
|
1169
|
-
// https://tc39.es/ecma262/#sec-array.prototype.includes
|
|
1170
|
-
includes: createMethod(true),
|
|
1171
|
-
// `Array.prototype.indexOf` method
|
|
1172
|
-
// https://tc39.es/ecma262/#sec-array.prototype.indexof
|
|
1173
|
-
indexOf: createMethod(false)
|
|
1174
|
-
};
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
/***/ }),
|
|
1178
|
-
/* 39 */
|
|
1179
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
var trunc = __webpack_require__(63);
|
|
1143
|
+
var trunc = __webpack_require__(61);
|
|
1183
1144
|
|
|
1184
1145
|
// `ToIntegerOrInfinity` abstract operation
|
|
1185
1146
|
// https://tc39.es/ecma262/#sec-tointegerorinfinity
|
|
@@ -1191,7 +1152,7 @@ module.exports = function (argument) {
|
|
|
1191
1152
|
|
|
1192
1153
|
|
|
1193
1154
|
/***/ }),
|
|
1194
|
-
/*
|
|
1155
|
+
/* 39 */
|
|
1195
1156
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
1196
1157
|
|
|
1197
1158
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
@@ -1202,7 +1163,7 @@ module.exports = function (argument) {
|
|
|
1202
1163
|
/* harmony export */ zm: function() { return /* binding */ setGlobalContext; }
|
|
1203
1164
|
/* harmony export */ });
|
|
1204
1165
|
/* harmony import */ var _constants_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(10);
|
|
1205
|
-
/* harmony import */ var _module_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
1166
|
+
/* harmony import */ var _module_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(17);
|
|
1206
1167
|
// #!/usr/bin/env babel-node
|
|
1207
1168
|
// -*- coding: utf-8 -*-
|
|
1208
1169
|
/** @module context *//* !
|
|
@@ -1224,17 +1185,17 @@ var NOOP=function NOOP(){// Do nothing.
|
|
|
1224
1185
|
if(!Object.prototype.hasOwnProperty.call(globalContext,"console"))globalContext.console={};if(!globalContext.console)globalContext.console={};var _iterator=_createForOfIteratorHelper(_constants_js__WEBPACK_IMPORTED_MODULE_0__/* .CONSOLE_METHODS */ .jg),_step;try{for(_iterator.s();!(_step=_iterator.n()).done;){var methodName=_step.value;if(!(methodName in globalContext.console))globalContext.console[methodName]=NOOP}}catch(err){_iterator.e(err)}finally{_iterator.f()}};
|
|
1225
1186
|
|
|
1226
1187
|
/***/ }),
|
|
1227
|
-
/*
|
|
1188
|
+
/* 40 */
|
|
1228
1189
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1229
1190
|
|
|
1230
1191
|
|
|
1231
1192
|
var globalThis = __webpack_require__(0);
|
|
1232
|
-
var getOwnPropertyDescriptor = (__webpack_require__(
|
|
1233
|
-
var createNonEnumerableProperty = __webpack_require__(
|
|
1234
|
-
var defineBuiltIn = __webpack_require__(
|
|
1193
|
+
var getOwnPropertyDescriptor = (__webpack_require__(41).f);
|
|
1194
|
+
var createNonEnumerableProperty = __webpack_require__(32);
|
|
1195
|
+
var defineBuiltIn = __webpack_require__(54);
|
|
1235
1196
|
var defineGlobalProperty = __webpack_require__(15);
|
|
1236
|
-
var copyConstructorProperties = __webpack_require__(
|
|
1237
|
-
var isForced = __webpack_require__(
|
|
1197
|
+
var copyConstructorProperties = __webpack_require__(57);
|
|
1198
|
+
var isForced = __webpack_require__(64);
|
|
1238
1199
|
|
|
1239
1200
|
/*
|
|
1240
1201
|
options.target - name of the target object
|
|
@@ -1285,18 +1246,18 @@ module.exports = function (options, source) {
|
|
|
1285
1246
|
|
|
1286
1247
|
|
|
1287
1248
|
/***/ }),
|
|
1288
|
-
/*
|
|
1249
|
+
/* 41 */
|
|
1289
1250
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
1290
1251
|
|
|
1291
1252
|
|
|
1292
1253
|
var DESCRIPTORS = __webpack_require__(3);
|
|
1293
1254
|
var call = __webpack_require__(12);
|
|
1294
|
-
var propertyIsEnumerableModule = __webpack_require__(
|
|
1295
|
-
var createPropertyDescriptor = __webpack_require__(
|
|
1255
|
+
var propertyIsEnumerableModule = __webpack_require__(76);
|
|
1256
|
+
var createPropertyDescriptor = __webpack_require__(20);
|
|
1296
1257
|
var toIndexedObject = __webpack_require__(11);
|
|
1297
|
-
var toPropertyKey = __webpack_require__(
|
|
1258
|
+
var toPropertyKey = __webpack_require__(23);
|
|
1298
1259
|
var hasOwn = __webpack_require__(5);
|
|
1299
|
-
var IE8_DOM_DEFINE = __webpack_require__(
|
|
1260
|
+
var IE8_DOM_DEFINE = __webpack_require__(30);
|
|
1300
1261
|
|
|
1301
1262
|
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
1302
1263
|
var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
@@ -1314,13 +1275,13 @@ exports.f = DESCRIPTORS ? $getOwnPropertyDescriptor : function getOwnPropertyDes
|
|
|
1314
1275
|
|
|
1315
1276
|
|
|
1316
1277
|
/***/ }),
|
|
1317
|
-
/*
|
|
1278
|
+
/* 42 */
|
|
1318
1279
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1319
1280
|
|
|
1320
1281
|
|
|
1321
1282
|
var uncurryThis = __webpack_require__(4);
|
|
1322
1283
|
var fails = __webpack_require__(1);
|
|
1323
|
-
var classof = __webpack_require__(
|
|
1284
|
+
var classof = __webpack_require__(43);
|
|
1324
1285
|
|
|
1325
1286
|
var $Object = Object;
|
|
1326
1287
|
var split = uncurryThis(''.split);
|
|
@@ -1336,7 +1297,7 @@ module.exports = fails(function () {
|
|
|
1336
1297
|
|
|
1337
1298
|
|
|
1338
1299
|
/***/ }),
|
|
1339
|
-
/*
|
|
1300
|
+
/* 43 */
|
|
1340
1301
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1341
1302
|
|
|
1342
1303
|
|
|
@@ -1351,16 +1312,16 @@ module.exports = function (it) {
|
|
|
1351
1312
|
|
|
1352
1313
|
|
|
1353
1314
|
/***/ }),
|
|
1354
|
-
/*
|
|
1315
|
+
/* 44 */
|
|
1355
1316
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1356
1317
|
|
|
1357
1318
|
|
|
1358
1319
|
var call = __webpack_require__(12);
|
|
1359
1320
|
var isObject = __webpack_require__(7);
|
|
1360
|
-
var isSymbol = __webpack_require__(
|
|
1361
|
-
var getMethod = __webpack_require__(
|
|
1362
|
-
var ordinaryToPrimitive = __webpack_require__(
|
|
1363
|
-
var wellKnownSymbol = __webpack_require__(
|
|
1321
|
+
var isSymbol = __webpack_require__(24);
|
|
1322
|
+
var getMethod = __webpack_require__(48);
|
|
1323
|
+
var ordinaryToPrimitive = __webpack_require__(51);
|
|
1324
|
+
var wellKnownSymbol = __webpack_require__(27);
|
|
1364
1325
|
|
|
1365
1326
|
var $TypeError = TypeError;
|
|
1366
1327
|
var TO_PRIMITIVE = wellKnownSymbol('toPrimitive');
|
|
@@ -1383,7 +1344,7 @@ module.exports = function (input, pref) {
|
|
|
1383
1344
|
|
|
1384
1345
|
|
|
1385
1346
|
/***/ }),
|
|
1386
|
-
/*
|
|
1347
|
+
/* 45 */
|
|
1387
1348
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1388
1349
|
|
|
1389
1350
|
|
|
@@ -1393,12 +1354,12 @@ module.exports = uncurryThis({}.isPrototypeOf);
|
|
|
1393
1354
|
|
|
1394
1355
|
|
|
1395
1356
|
/***/ }),
|
|
1396
|
-
/*
|
|
1357
|
+
/* 46 */
|
|
1397
1358
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1398
1359
|
|
|
1399
1360
|
|
|
1400
1361
|
var globalThis = __webpack_require__(0);
|
|
1401
|
-
var userAgent = __webpack_require__(
|
|
1362
|
+
var userAgent = __webpack_require__(47);
|
|
1402
1363
|
|
|
1403
1364
|
var process = globalThis.process;
|
|
1404
1365
|
var Deno = globalThis.Deno;
|
|
@@ -1427,7 +1388,7 @@ module.exports = version;
|
|
|
1427
1388
|
|
|
1428
1389
|
|
|
1429
1390
|
/***/ }),
|
|
1430
|
-
/*
|
|
1391
|
+
/* 47 */
|
|
1431
1392
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1432
1393
|
|
|
1433
1394
|
|
|
@@ -1440,12 +1401,12 @@ module.exports = userAgent ? String(userAgent) : '';
|
|
|
1440
1401
|
|
|
1441
1402
|
|
|
1442
1403
|
/***/ }),
|
|
1443
|
-
/*
|
|
1404
|
+
/* 48 */
|
|
1444
1405
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1445
1406
|
|
|
1446
1407
|
|
|
1447
|
-
var aCallable = __webpack_require__(
|
|
1448
|
-
var isNullOrUndefined = __webpack_require__(
|
|
1408
|
+
var aCallable = __webpack_require__(49);
|
|
1409
|
+
var isNullOrUndefined = __webpack_require__(22);
|
|
1449
1410
|
|
|
1450
1411
|
// `GetMethod` abstract operation
|
|
1451
1412
|
// https://tc39.es/ecma262/#sec-getmethod
|
|
@@ -1456,12 +1417,12 @@ module.exports = function (V, P) {
|
|
|
1456
1417
|
|
|
1457
1418
|
|
|
1458
1419
|
/***/ }),
|
|
1459
|
-
/*
|
|
1420
|
+
/* 49 */
|
|
1460
1421
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1461
1422
|
|
|
1462
1423
|
|
|
1463
1424
|
var isCallable = __webpack_require__(2);
|
|
1464
|
-
var tryToString = __webpack_require__(
|
|
1425
|
+
var tryToString = __webpack_require__(50);
|
|
1465
1426
|
|
|
1466
1427
|
var $TypeError = TypeError;
|
|
1467
1428
|
|
|
@@ -1473,7 +1434,7 @@ module.exports = function (argument) {
|
|
|
1473
1434
|
|
|
1474
1435
|
|
|
1475
1436
|
/***/ }),
|
|
1476
|
-
/*
|
|
1437
|
+
/* 50 */
|
|
1477
1438
|
/***/ (function(module) {
|
|
1478
1439
|
|
|
1479
1440
|
|
|
@@ -1489,7 +1450,7 @@ module.exports = function (argument) {
|
|
|
1489
1450
|
|
|
1490
1451
|
|
|
1491
1452
|
/***/ }),
|
|
1492
|
-
/*
|
|
1453
|
+
/* 51 */
|
|
1493
1454
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1494
1455
|
|
|
1495
1456
|
|
|
@@ -1511,7 +1472,7 @@ module.exports = function (input, pref) {
|
|
|
1511
1472
|
|
|
1512
1473
|
|
|
1513
1474
|
/***/ }),
|
|
1514
|
-
/*
|
|
1475
|
+
/* 52 */
|
|
1515
1476
|
/***/ (function(module) {
|
|
1516
1477
|
|
|
1517
1478
|
|
|
@@ -1519,11 +1480,11 @@ module.exports = false;
|
|
|
1519
1480
|
|
|
1520
1481
|
|
|
1521
1482
|
/***/ }),
|
|
1522
|
-
/*
|
|
1483
|
+
/* 53 */
|
|
1523
1484
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1524
1485
|
|
|
1525
1486
|
|
|
1526
|
-
var requireObjectCoercible = __webpack_require__(
|
|
1487
|
+
var requireObjectCoercible = __webpack_require__(21);
|
|
1527
1488
|
|
|
1528
1489
|
var $Object = Object;
|
|
1529
1490
|
|
|
@@ -1535,13 +1496,13 @@ module.exports = function (argument) {
|
|
|
1535
1496
|
|
|
1536
1497
|
|
|
1537
1498
|
/***/ }),
|
|
1538
|
-
/*
|
|
1499
|
+
/* 54 */
|
|
1539
1500
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1540
1501
|
|
|
1541
1502
|
|
|
1542
1503
|
var isCallable = __webpack_require__(2);
|
|
1543
1504
|
var definePropertyModule = __webpack_require__(8);
|
|
1544
|
-
var makeBuiltIn = __webpack_require__(
|
|
1505
|
+
var makeBuiltIn = __webpack_require__(34);
|
|
1545
1506
|
var defineGlobalProperty = __webpack_require__(15);
|
|
1546
1507
|
|
|
1547
1508
|
module.exports = function (O, key, value, options) {
|
|
@@ -1569,31 +1530,7 @@ module.exports = function (O, key, value, options) {
|
|
|
1569
1530
|
|
|
1570
1531
|
|
|
1571
1532
|
/***/ }),
|
|
1572
|
-
/*
|
|
1573
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1574
|
-
|
|
1575
|
-
|
|
1576
|
-
var DESCRIPTORS = __webpack_require__(3);
|
|
1577
|
-
var hasOwn = __webpack_require__(5);
|
|
1578
|
-
|
|
1579
|
-
var FunctionPrototype = Function.prototype;
|
|
1580
|
-
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
1581
|
-
var getDescriptor = DESCRIPTORS && Object.getOwnPropertyDescriptor;
|
|
1582
|
-
|
|
1583
|
-
var EXISTS = hasOwn(FunctionPrototype, 'name');
|
|
1584
|
-
// additional protection from minified / mangled / dropped function names
|
|
1585
|
-
var PROPER = EXISTS && function something() { /* empty */ }.name === 'something';
|
|
1586
|
-
var CONFIGURABLE = EXISTS && (!DESCRIPTORS || (DESCRIPTORS && getDescriptor(FunctionPrototype, 'name').configurable));
|
|
1587
|
-
|
|
1588
|
-
module.exports = {
|
|
1589
|
-
EXISTS: EXISTS,
|
|
1590
|
-
PROPER: PROPER,
|
|
1591
|
-
CONFIGURABLE: CONFIGURABLE
|
|
1592
|
-
};
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
/***/ }),
|
|
1596
|
-
/* 57 */
|
|
1533
|
+
/* 55 */
|
|
1597
1534
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1598
1535
|
|
|
1599
1536
|
|
|
@@ -1614,84 +1551,7 @@ module.exports = store.inspectSource;
|
|
|
1614
1551
|
|
|
1615
1552
|
|
|
1616
1553
|
/***/ }),
|
|
1617
|
-
/*
|
|
1618
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
var NATIVE_WEAK_MAP = __webpack_require__(59);
|
|
1622
|
-
var globalThis = __webpack_require__(0);
|
|
1623
|
-
var isObject = __webpack_require__(7);
|
|
1624
|
-
var createNonEnumerableProperty = __webpack_require__(33);
|
|
1625
|
-
var hasOwn = __webpack_require__(5);
|
|
1626
|
-
var shared = __webpack_require__(14);
|
|
1627
|
-
var sharedKey = __webpack_require__(36);
|
|
1628
|
-
var hiddenKeys = __webpack_require__(16);
|
|
1629
|
-
|
|
1630
|
-
var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
|
|
1631
|
-
var TypeError = globalThis.TypeError;
|
|
1632
|
-
var WeakMap = globalThis.WeakMap;
|
|
1633
|
-
var set, get, has;
|
|
1634
|
-
|
|
1635
|
-
var enforce = function (it) {
|
|
1636
|
-
return has(it) ? get(it) : set(it, {});
|
|
1637
|
-
};
|
|
1638
|
-
|
|
1639
|
-
var getterFor = function (TYPE) {
|
|
1640
|
-
return function (it) {
|
|
1641
|
-
var state;
|
|
1642
|
-
if (!isObject(it) || (state = get(it)).type !== TYPE) {
|
|
1643
|
-
throw new TypeError('Incompatible receiver, ' + TYPE + ' required');
|
|
1644
|
-
} return state;
|
|
1645
|
-
};
|
|
1646
|
-
};
|
|
1647
|
-
|
|
1648
|
-
if (NATIVE_WEAK_MAP || shared.state) {
|
|
1649
|
-
var store = shared.state || (shared.state = new WeakMap());
|
|
1650
|
-
/* eslint-disable no-self-assign -- prototype methods protection */
|
|
1651
|
-
store.get = store.get;
|
|
1652
|
-
store.has = store.has;
|
|
1653
|
-
store.set = store.set;
|
|
1654
|
-
/* eslint-enable no-self-assign -- prototype methods protection */
|
|
1655
|
-
set = function (it, metadata) {
|
|
1656
|
-
if (store.has(it)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
|
|
1657
|
-
metadata.facade = it;
|
|
1658
|
-
store.set(it, metadata);
|
|
1659
|
-
return metadata;
|
|
1660
|
-
};
|
|
1661
|
-
get = function (it) {
|
|
1662
|
-
return store.get(it) || {};
|
|
1663
|
-
};
|
|
1664
|
-
has = function (it) {
|
|
1665
|
-
return store.has(it);
|
|
1666
|
-
};
|
|
1667
|
-
} else {
|
|
1668
|
-
var STATE = sharedKey('state');
|
|
1669
|
-
hiddenKeys[STATE] = true;
|
|
1670
|
-
set = function (it, metadata) {
|
|
1671
|
-
if (hasOwn(it, STATE)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
|
|
1672
|
-
metadata.facade = it;
|
|
1673
|
-
createNonEnumerableProperty(it, STATE, metadata);
|
|
1674
|
-
return metadata;
|
|
1675
|
-
};
|
|
1676
|
-
get = function (it) {
|
|
1677
|
-
return hasOwn(it, STATE) ? it[STATE] : {};
|
|
1678
|
-
};
|
|
1679
|
-
has = function (it) {
|
|
1680
|
-
return hasOwn(it, STATE);
|
|
1681
|
-
};
|
|
1682
|
-
}
|
|
1683
|
-
|
|
1684
|
-
module.exports = {
|
|
1685
|
-
set: set,
|
|
1686
|
-
get: get,
|
|
1687
|
-
has: has,
|
|
1688
|
-
enforce: enforce,
|
|
1689
|
-
getterFor: getterFor
|
|
1690
|
-
};
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
/***/ }),
|
|
1694
|
-
/* 59 */
|
|
1554
|
+
/* 56 */
|
|
1695
1555
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1696
1556
|
|
|
1697
1557
|
|
|
@@ -1704,13 +1564,13 @@ module.exports = isCallable(WeakMap) && /native code/.test(String(WeakMap));
|
|
|
1704
1564
|
|
|
1705
1565
|
|
|
1706
1566
|
/***/ }),
|
|
1707
|
-
/*
|
|
1567
|
+
/* 57 */
|
|
1708
1568
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1709
1569
|
|
|
1710
1570
|
|
|
1711
1571
|
var hasOwn = __webpack_require__(5);
|
|
1712
|
-
var ownKeys = __webpack_require__(
|
|
1713
|
-
var getOwnPropertyDescriptorModule = __webpack_require__(
|
|
1572
|
+
var ownKeys = __webpack_require__(58);
|
|
1573
|
+
var getOwnPropertyDescriptorModule = __webpack_require__(41);
|
|
1714
1574
|
var definePropertyModule = __webpack_require__(8);
|
|
1715
1575
|
|
|
1716
1576
|
module.exports = function (target, source, exceptions) {
|
|
@@ -1727,14 +1587,14 @@ module.exports = function (target, source, exceptions) {
|
|
|
1727
1587
|
|
|
1728
1588
|
|
|
1729
1589
|
/***/ }),
|
|
1730
|
-
/*
|
|
1590
|
+
/* 58 */
|
|
1731
1591
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1732
1592
|
|
|
1733
1593
|
|
|
1734
1594
|
var getBuiltIn = __webpack_require__(13);
|
|
1735
1595
|
var uncurryThis = __webpack_require__(4);
|
|
1736
|
-
var getOwnPropertyNamesModule = __webpack_require__(
|
|
1737
|
-
var getOwnPropertySymbolsModule = __webpack_require__(
|
|
1596
|
+
var getOwnPropertyNamesModule = __webpack_require__(79);
|
|
1597
|
+
var getOwnPropertySymbolsModule = __webpack_require__(80);
|
|
1738
1598
|
var anObject = __webpack_require__(9);
|
|
1739
1599
|
|
|
1740
1600
|
var concat = uncurryThis([].concat);
|
|
@@ -1748,11 +1608,51 @@ module.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {
|
|
|
1748
1608
|
|
|
1749
1609
|
|
|
1750
1610
|
/***/ }),
|
|
1751
|
-
/*
|
|
1611
|
+
/* 59 */
|
|
1612
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1613
|
+
|
|
1614
|
+
|
|
1615
|
+
var toIndexedObject = __webpack_require__(11);
|
|
1616
|
+
var toAbsoluteIndex = __webpack_require__(60);
|
|
1617
|
+
var lengthOfArrayLike = __webpack_require__(62);
|
|
1618
|
+
|
|
1619
|
+
// `Array.prototype.{ indexOf, includes }` methods implementation
|
|
1620
|
+
var createMethod = function (IS_INCLUDES) {
|
|
1621
|
+
return function ($this, el, fromIndex) {
|
|
1622
|
+
var O = toIndexedObject($this);
|
|
1623
|
+
var length = lengthOfArrayLike(O);
|
|
1624
|
+
if (length === 0) return !IS_INCLUDES && -1;
|
|
1625
|
+
var index = toAbsoluteIndex(fromIndex, length);
|
|
1626
|
+
var value;
|
|
1627
|
+
// Array#includes uses SameValueZero equality algorithm
|
|
1628
|
+
// eslint-disable-next-line no-self-compare -- NaN check
|
|
1629
|
+
if (IS_INCLUDES && el !== el) while (length > index) {
|
|
1630
|
+
value = O[index++];
|
|
1631
|
+
// eslint-disable-next-line no-self-compare -- NaN check
|
|
1632
|
+
if (value !== value) return true;
|
|
1633
|
+
// Array#indexOf ignores holes, Array#includes - not
|
|
1634
|
+
} else for (;length > index; index++) {
|
|
1635
|
+
if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
|
|
1636
|
+
} return !IS_INCLUDES && -1;
|
|
1637
|
+
};
|
|
1638
|
+
};
|
|
1639
|
+
|
|
1640
|
+
module.exports = {
|
|
1641
|
+
// `Array.prototype.includes` method
|
|
1642
|
+
// https://tc39.es/ecma262/#sec-array.prototype.includes
|
|
1643
|
+
m: createMethod(true),
|
|
1644
|
+
// `Array.prototype.indexOf` method
|
|
1645
|
+
// https://tc39.es/ecma262/#sec-array.prototype.indexof
|
|
1646
|
+
q: createMethod(false)
|
|
1647
|
+
};
|
|
1648
|
+
|
|
1649
|
+
|
|
1650
|
+
/***/ }),
|
|
1651
|
+
/* 60 */
|
|
1752
1652
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1753
1653
|
|
|
1754
1654
|
|
|
1755
|
-
var toIntegerOrInfinity = __webpack_require__(
|
|
1655
|
+
var toIntegerOrInfinity = __webpack_require__(38);
|
|
1756
1656
|
|
|
1757
1657
|
var max = Math.max;
|
|
1758
1658
|
var min = Math.min;
|
|
@@ -1767,7 +1667,7 @@ module.exports = function (index, length) {
|
|
|
1767
1667
|
|
|
1768
1668
|
|
|
1769
1669
|
/***/ }),
|
|
1770
|
-
/*
|
|
1670
|
+
/* 61 */
|
|
1771
1671
|
/***/ (function(module) {
|
|
1772
1672
|
|
|
1773
1673
|
|
|
@@ -1784,11 +1684,11 @@ module.exports = Math.trunc || function trunc(x) {
|
|
|
1784
1684
|
|
|
1785
1685
|
|
|
1786
1686
|
/***/ }),
|
|
1787
|
-
/*
|
|
1687
|
+
/* 62 */
|
|
1788
1688
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1789
1689
|
|
|
1790
1690
|
|
|
1791
|
-
var toLength = __webpack_require__(
|
|
1691
|
+
var toLength = __webpack_require__(63);
|
|
1792
1692
|
|
|
1793
1693
|
// `LengthOfArrayLike` abstract operation
|
|
1794
1694
|
// https://tc39.es/ecma262/#sec-lengthofarraylike
|
|
@@ -1798,11 +1698,11 @@ module.exports = function (obj) {
|
|
|
1798
1698
|
|
|
1799
1699
|
|
|
1800
1700
|
/***/ }),
|
|
1801
|
-
/*
|
|
1701
|
+
/* 63 */
|
|
1802
1702
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1803
1703
|
|
|
1804
1704
|
|
|
1805
|
-
var toIntegerOrInfinity = __webpack_require__(
|
|
1705
|
+
var toIntegerOrInfinity = __webpack_require__(38);
|
|
1806
1706
|
|
|
1807
1707
|
var min = Math.min;
|
|
1808
1708
|
|
|
@@ -1815,7 +1715,7 @@ module.exports = function (argument) {
|
|
|
1815
1715
|
|
|
1816
1716
|
|
|
1817
1717
|
/***/ }),
|
|
1818
|
-
/*
|
|
1718
|
+
/* 64 */
|
|
1819
1719
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1820
1720
|
|
|
1821
1721
|
|
|
@@ -1844,12 +1744,12 @@ module.exports = isForced;
|
|
|
1844
1744
|
|
|
1845
1745
|
|
|
1846
1746
|
/***/ }),
|
|
1847
|
-
/*
|
|
1747
|
+
/* 65 */
|
|
1848
1748
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1849
1749
|
|
|
1850
1750
|
|
|
1851
|
-
var wellKnownSymbol = __webpack_require__(
|
|
1852
|
-
var create = __webpack_require__(
|
|
1751
|
+
var wellKnownSymbol = __webpack_require__(27);
|
|
1752
|
+
var create = __webpack_require__(66);
|
|
1853
1753
|
var defineProperty = (__webpack_require__(8).f);
|
|
1854
1754
|
|
|
1855
1755
|
var UNSCOPABLES = wellKnownSymbol('unscopables');
|
|
@@ -1871,18 +1771,18 @@ module.exports = function (key) {
|
|
|
1871
1771
|
|
|
1872
1772
|
|
|
1873
1773
|
/***/ }),
|
|
1874
|
-
/*
|
|
1774
|
+
/* 66 */
|
|
1875
1775
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1876
1776
|
|
|
1877
1777
|
|
|
1878
1778
|
/* global ActiveXObject -- old IE, WSH */
|
|
1879
1779
|
var anObject = __webpack_require__(9);
|
|
1880
|
-
var definePropertiesModule = __webpack_require__(
|
|
1881
|
-
var enumBugKeys = __webpack_require__(
|
|
1882
|
-
var hiddenKeys = __webpack_require__(
|
|
1883
|
-
var html = __webpack_require__(
|
|
1884
|
-
var documentCreateElement = __webpack_require__(
|
|
1885
|
-
var sharedKey = __webpack_require__(
|
|
1780
|
+
var definePropertiesModule = __webpack_require__(81);
|
|
1781
|
+
var enumBugKeys = __webpack_require__(16);
|
|
1782
|
+
var hiddenKeys = __webpack_require__(36);
|
|
1783
|
+
var html = __webpack_require__(68);
|
|
1784
|
+
var documentCreateElement = __webpack_require__(31);
|
|
1785
|
+
var sharedKey = __webpack_require__(35);
|
|
1886
1786
|
|
|
1887
1787
|
var GT = '>';
|
|
1888
1788
|
var LT = '<';
|
|
@@ -1962,12 +1862,12 @@ module.exports = Object.create || function create(O, Properties) {
|
|
|
1962
1862
|
|
|
1963
1863
|
|
|
1964
1864
|
/***/ }),
|
|
1965
|
-
/*
|
|
1865
|
+
/* 67 */
|
|
1966
1866
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1967
1867
|
|
|
1968
1868
|
|
|
1969
1869
|
var internalObjectKeys = __webpack_require__(37);
|
|
1970
|
-
var enumBugKeys = __webpack_require__(
|
|
1870
|
+
var enumBugKeys = __webpack_require__(16);
|
|
1971
1871
|
|
|
1972
1872
|
// `Object.keys` method
|
|
1973
1873
|
// https://tc39.es/ecma262/#sec-object.keys
|
|
@@ -1978,7 +1878,7 @@ module.exports = Object.keys || function keys(O) {
|
|
|
1978
1878
|
|
|
1979
1879
|
|
|
1980
1880
|
/***/ }),
|
|
1981
|
-
/*
|
|
1881
|
+
/* 68 */
|
|
1982
1882
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1983
1883
|
|
|
1984
1884
|
|
|
@@ -1988,11 +1888,11 @@ module.exports = getBuiltIn('document', 'documentElement');
|
|
|
1988
1888
|
|
|
1989
1889
|
|
|
1990
1890
|
/***/ }),
|
|
1991
|
-
/*
|
|
1891
|
+
/* 69 */
|
|
1992
1892
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1993
1893
|
|
|
1994
1894
|
|
|
1995
|
-
var makeBuiltIn = __webpack_require__(
|
|
1895
|
+
var makeBuiltIn = __webpack_require__(34);
|
|
1996
1896
|
var defineProperty = __webpack_require__(8);
|
|
1997
1897
|
|
|
1998
1898
|
module.exports = function (target, name, descriptor) {
|
|
@@ -2003,60 +1903,7 @@ module.exports = function (target, name, descriptor) {
|
|
|
2003
1903
|
|
|
2004
1904
|
|
|
2005
1905
|
/***/ }),
|
|
2006
|
-
/*
|
|
2007
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
2008
|
-
|
|
2009
|
-
|
|
2010
|
-
var globalThis = __webpack_require__(0);
|
|
2011
|
-
var fails = __webpack_require__(1);
|
|
2012
|
-
|
|
2013
|
-
// babel-minify and Closure Compiler transpiles RegExp('.', 'd') -> /./d and it causes SyntaxError
|
|
2014
|
-
var RegExp = globalThis.RegExp;
|
|
2015
|
-
|
|
2016
|
-
var FLAGS_GETTER_IS_CORRECT = !fails(function () {
|
|
2017
|
-
var INDICES_SUPPORT = true;
|
|
2018
|
-
try {
|
|
2019
|
-
RegExp('.', 'd');
|
|
2020
|
-
} catch (error) {
|
|
2021
|
-
INDICES_SUPPORT = false;
|
|
2022
|
-
}
|
|
2023
|
-
|
|
2024
|
-
var O = {};
|
|
2025
|
-
// modern V8 bug
|
|
2026
|
-
var calls = '';
|
|
2027
|
-
var expected = INDICES_SUPPORT ? 'dgimsy' : 'gimsy';
|
|
2028
|
-
|
|
2029
|
-
var addGetter = function (key, chr) {
|
|
2030
|
-
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
2031
|
-
Object.defineProperty(O, key, { get: function () {
|
|
2032
|
-
calls += chr;
|
|
2033
|
-
return true;
|
|
2034
|
-
} });
|
|
2035
|
-
};
|
|
2036
|
-
|
|
2037
|
-
var pairs = {
|
|
2038
|
-
dotAll: 's',
|
|
2039
|
-
global: 'g',
|
|
2040
|
-
ignoreCase: 'i',
|
|
2041
|
-
multiline: 'm',
|
|
2042
|
-
sticky: 'y'
|
|
2043
|
-
};
|
|
2044
|
-
|
|
2045
|
-
if (INDICES_SUPPORT) pairs.hasIndices = 'd';
|
|
2046
|
-
|
|
2047
|
-
for (var key in pairs) addGetter(key, pairs[key]);
|
|
2048
|
-
|
|
2049
|
-
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
2050
|
-
var result = Object.getOwnPropertyDescriptor(RegExp.prototype, 'flags').get.call(O);
|
|
2051
|
-
|
|
2052
|
-
return result !== expected || calls !== expected;
|
|
2053
|
-
});
|
|
2054
|
-
|
|
2055
|
-
module.exports = { correct: FLAGS_GETTER_IS_CORRECT };
|
|
2056
|
-
|
|
2057
|
-
|
|
2058
|
-
/***/ }),
|
|
2059
|
-
/* 73 */
|
|
1906
|
+
/* 70 */
|
|
2060
1907
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
2061
1908
|
|
|
2062
1909
|
|
|
@@ -2080,7 +1927,7 @@ module.exports = function () {
|
|
|
2080
1927
|
|
|
2081
1928
|
|
|
2082
1929
|
/***/ }),
|
|
2083
|
-
/*
|
|
1930
|
+
/* 71 */
|
|
2084
1931
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
2085
1932
|
|
|
2086
1933
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -2099,7 +1946,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2099
1946
|
/* harmony import */ var core_js_modules_es_array_includes_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(6);
|
|
2100
1947
|
/* harmony import */ var core_js_modules_es_array_includes_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_includes_js__WEBPACK_IMPORTED_MODULE_0__);
|
|
2101
1948
|
/* harmony import */ var _constants_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(10);
|
|
2102
|
-
/* harmony import */ var _object_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
1949
|
+
/* harmony import */ var _object_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(18);
|
|
2103
1950
|
// #!/usr/bin/env babel-node
|
|
2104
1951
|
// -*- coding: utf-8 -*-
|
|
2105
1952
|
/** @module indicators *//* !
|
|
@@ -2174,7 +2021,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2174
2021
|
*/var isFunction=function isFunction(value){return Boolean(value)&&["[object AsyncFunction]","[object Function]"].includes({}.toString.call(value))};
|
|
2175
2022
|
|
|
2176
2023
|
/***/ }),
|
|
2177
|
-
/*
|
|
2024
|
+
/* 72 */
|
|
2178
2025
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
2179
2026
|
|
|
2180
2027
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -2187,7 +2034,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2187
2034
|
/* harmony export */ });
|
|
2188
2035
|
/* harmony import */ var core_js_modules_es_array_includes_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(6);
|
|
2189
2036
|
/* harmony import */ var core_js_modules_es_array_includes_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_includes_js__WEBPACK_IMPORTED_MODULE_0__);
|
|
2190
|
-
/* harmony import */ var _object_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
2037
|
+
/* harmony import */ var _object_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(18);
|
|
2191
2038
|
// #!/usr/bin/env babel-node
|
|
2192
2039
|
// -*- coding: utf-8 -*-
|
|
2193
2040
|
/** @module number *//* !
|
|
@@ -2231,7 +2078,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2231
2078
|
*/var floor=function floor(number,digits){if(digits===void 0){digits=0}return Math.floor(number*Math.pow(10,digits))/Math.pow(10,digits)};
|
|
2232
2079
|
|
|
2233
2080
|
/***/ }),
|
|
2234
|
-
/*
|
|
2081
|
+
/* 73 */
|
|
2235
2082
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
2236
2083
|
|
|
2237
2084
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -2280,9 +2127,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2280
2127
|
/* harmony import */ var core_js_modules_es_array_includes_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(6);
|
|
2281
2128
|
/* harmony import */ var core_js_modules_es_array_includes_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_includes_js__WEBPACK_IMPORTED_MODULE_0__);
|
|
2282
2129
|
/* harmony import */ var _constants_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(10);
|
|
2283
|
-
/* harmony import */ var _context_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
2284
|
-
/* harmony import */ var _filesystem_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
2285
|
-
/* harmony import */ var _object_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
|
|
2130
|
+
/* harmony import */ var _context_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(39);
|
|
2131
|
+
/* harmony import */ var _filesystem_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(74);
|
|
2132
|
+
/* harmony import */ var _object_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(18);
|
|
2286
2133
|
// #!/usr/bin/env babel-node
|
|
2287
2134
|
// -*- coding: utf-8 -*-
|
|
2288
2135
|
/** @module string *//* !
|
|
@@ -2516,7 +2363,11 @@ var _compile=compile(expression,options),error=_compile.error,originalScopeNames
|
|
|
2516
2363
|
* @param skipTagDelimitedParts - Indicates whether to, for example, ignore
|
|
2517
2364
|
* html tags via "['<', '>']" (the default).
|
|
2518
2365
|
* @returns Start and end index of matching range.
|
|
2519
|
-
*/var findNormalizedMatchRange=function findNormalizedMatchRange(target,query,normalizer,skipTagDelimitedParts){if(normalizer===void 0){normalizer=function normalizer(value){return
|
|
2366
|
+
*/var findNormalizedMatchRange=function findNormalizedMatchRange(target,query,normalizer,skipTagDelimitedParts){if(normalizer===void 0){normalizer=function normalizer(value){return typeof value==="string"?value.trim().toLowerCase():value}}if(skipTagDelimitedParts===void 0){skipTagDelimitedParts=["<",">"]}var normalizedQuery=normalizer(query);var stringNormalizedQuery;if(typeof normalizedQuery==="string")stringNormalizedQuery=normalizedQuery;else{var match=target.match(normalizedQuery);stringNormalizedQuery=match?match[0]:""}if(!stringNormalizedQuery)return null;var normalizedTarget=normalizer(target);if(!normalizedTarget)return null;var stringTarget=typeof target==="string"?target:normalizedTarget;var inTag=false;for(var index=0;index<stringTarget.length;index+=1){if(inTag){if(Array.isArray(skipTagDelimitedParts)&&stringTarget.charAt(index)===skipTagDelimitedParts[1])inTag=false;continue}if(Array.isArray(skipTagDelimitedParts)&&stringTarget.charAt(index)===skipTagDelimitedParts[0]){inTag=true;continue}/*
|
|
2367
|
+
Skip positions the normalizer strips away (e.g. leading
|
|
2368
|
+
whitespace), so the reported match index aligns with the real
|
|
2369
|
+
character.
|
|
2370
|
+
*/if(!normalizer(stringTarget.charAt(index)))continue;if(normalizer(stringTarget.substring(index)).startsWith(stringNormalizedQuery)){if(stringNormalizedQuery.length===1)return[index,index+1];for(var subIndex=stringTarget.length;subIndex>index;subIndex-=1)if(!normalizer(stringTarget.substring(index,subIndex)).startsWith(stringNormalizedQuery))return[index,subIndex+1]}}return null};/**
|
|
2520
2371
|
* Fixes known encoding problems in given data.
|
|
2521
2372
|
* @param data - To process.
|
|
2522
2373
|
* @returns Processed data.
|
|
@@ -2560,8 +2411,9 @@ distanceMatrix[firstIndex-1][secondIndex-1]+indicator)}return distanceMatrix[sec
|
|
|
2560
2411
|
* @returns The formatted string.
|
|
2561
2412
|
*/var lowerCase=function lowerCase(string){return string.charAt(0).toLowerCase()+string.substring(1)};/**
|
|
2562
2413
|
* Wraps given mark strings in a given target with a given marker.
|
|
2563
|
-
* @param target - String to search
|
|
2564
|
-
* @param
|
|
2414
|
+
* @param target - String to search in.
|
|
2415
|
+
* @param givenSearchWords - String or regular expression or array of those to
|
|
2416
|
+
* search for.
|
|
2565
2417
|
* @param givenOptions - Defines highlighting behavior.
|
|
2566
2418
|
* @param givenOptions.marker - HTML template string to mark.
|
|
2567
2419
|
* @param givenOptions.normalizer - Pure normalization function to use before
|
|
@@ -2569,11 +2421,11 @@ distanceMatrix[firstIndex-1][secondIndex-1]+indicator)}return distanceMatrix[sec
|
|
|
2569
2421
|
* @param givenOptions.skipTagDelimitedParts - Indicates whether to, for
|
|
2570
2422
|
* example, ignore html tags via "['<', '>']" (the default).
|
|
2571
2423
|
* @returns Processed result.
|
|
2572
|
-
*/var mark=function mark(target,
|
|
2424
|
+
*/var mark=function mark(target,givenSearchWords,givenOptions){if(givenOptions===void 0){givenOptions={}}if(typeof target==="string"&&(Array.isArray(givenSearchWords)&&givenSearchWords.length||givenSearchWords instanceof RegExp||typeof givenSearchWords==="string"&&givenSearchWords.length)){var options=_objectSpread({marker:"<span class=\"tools-mark\">{1}</span>",normalizer:function normalizer(value){return typeof value==="string"?value.trim().toLowerCase():value},skipTagDelimitedParts:["<",">"]},givenOptions);target=target.trim();var markedTarget=[];var searchWords=[].concat(givenSearchWords);var index=0;var _iterator6=_createForOfIteratorHelper(searchWords),_step6;try{for(_iterator6.s();!(_step6=_iterator6.n()).done;){var _word=_step6.value;searchWords[index]=options.normalizer(_word);index+=1}}catch(err){_iterator6.e(err)}finally{_iterator6.f()}var restTarget=target;var offset=0;/*
|
|
2573
2425
|
Search for matches as long there is enough target text remaining to
|
|
2574
2426
|
walk through.
|
|
2575
2427
|
*/for(var iteration=0;iteration<_context_js__WEBPACK_IMPORTED_MODULE_2__/* .MAXIMAL_NUMBER_OF_ITERATIONS */ .$Q.value;iteration++){var nearestRange=null;var currentRange=void 0;// Find the nearest next matching word.
|
|
2576
|
-
var _iterator7=_createForOfIteratorHelper(
|
|
2428
|
+
var _iterator7=_createForOfIteratorHelper(searchWords),_step7;try{for(_iterator7.s();!(_step7=_iterator7.n()).done;){var word=_step7.value;currentRange=findNormalizedMatchRange(restTarget,word,options.normalizer,options.skipTagDelimitedParts);if(currentRange&&(!nearestRange||currentRange[0]<nearestRange[0]))nearestRange=currentRange}}catch(err){_iterator7.e(err)}finally{_iterator7.f()}if(nearestRange){if(nearestRange[0]>0)markedTarget.push(target.substring(offset,offset+nearestRange[0]));markedTarget.push(typeof options.marker==="string"?format(options.marker,target.substring(offset+nearestRange[0],offset+nearestRange[1])):options.marker(target.substring(offset+nearestRange[0],offset+nearestRange[1]),markedTarget));offset+=nearestRange[1];restTarget=target.substring(offset)}else{if(restTarget.length)markedTarget.push(restTarget);break}}return typeof options.marker==="string"?markedTarget.join(""):markedTarget}return target};/**
|
|
2577
2429
|
* Normalizes a given phone number for automatic dialing or comparison.
|
|
2578
2430
|
* @param value - Number to normalize.
|
|
2579
2431
|
* @param dialable - Indicates whether the result should be dialed or
|
|
@@ -2636,7 +2488,7 @@ return normalizedValue.replace(/^(.*?)([0-9]+)(-?[0-9]*)$/,function(_match,prefi
|
|
|
2636
2488
|
*/var limit=function limit(value,_limit){if(_limit===void 0){_limit=100}if(value.length<=_limit)return value;var dots="...";return value.substring(0,_limit-dots.length)+dots};
|
|
2637
2489
|
|
|
2638
2490
|
/***/ }),
|
|
2639
|
-
/*
|
|
2491
|
+
/* 74 */
|
|
2640
2492
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
2641
2493
|
|
|
2642
2494
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -2657,8 +2509,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2657
2509
|
/* harmony import */ var core_js_modules_es_array_includes_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(6);
|
|
2658
2510
|
/* harmony import */ var core_js_modules_es_array_includes_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_includes_js__WEBPACK_IMPORTED_MODULE_0__);
|
|
2659
2511
|
/* harmony import */ var _constants_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(10);
|
|
2660
|
-
/* harmony import */ var _context_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
2661
|
-
/* harmony import */ var _module_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
2512
|
+
/* harmony import */ var _context_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(39);
|
|
2513
|
+
/* harmony import */ var _module_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(17);
|
|
2662
2514
|
// #!/usr/bin/env babel-node
|
|
2663
2515
|
// -*- coding: utf-8 -*-
|
|
2664
2516
|
/** @module filesystem *//* !
|
|
@@ -2768,7 +2620,7 @@ try{mkdirSync(targetPath)}catch(error){if(error.code!=="EEXIST")throw error}for(
|
|
|
2768
2620
|
*/files.sort(function(firstFile,secondFile){var _firstFile$stats2,_secondFile$stats4;if((_firstFile$stats2=firstFile.stats)!==null&&_firstFile$stats2!==void 0&&_firstFile$stats2.isDirectory()){var _secondFile$stats3;if((_secondFile$stats3=secondFile.stats)!==null&&_secondFile$stats3!==void 0&&_secondFile$stats3.isDirectory())return 0;return-1}if((_secondFile$stats4=secondFile.stats)!==null&&_secondFile$stats4!==void 0&&_secondFile$stats4.isDirectory())return 1;return 0});var _iterator4=_createForOfIteratorHelper(files),_step4;try{for(_iterator4.s();!(_step4=_iterator4.n()).done;){var _file$stats2;var file=_step4.value;finalFiles.push(file);var result=callback(file);if(result===null)break;if(result!==false&&(_file$stats2=file.stats)!==null&&_file$stats2!==void 0&&_file$stats2.isDirectory())finalFiles=finalFiles.concat(_walkDirectoryRecursivelySync(file.path,callback,options))}}catch(err){_iterator4.e(err)}finally{_iterator4.f()}}return finalFiles};
|
|
2769
2621
|
|
|
2770
2622
|
/***/ }),
|
|
2771
|
-
/*
|
|
2623
|
+
/* 75 */
|
|
2772
2624
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
2773
2625
|
|
|
2774
2626
|
|
|
@@ -2780,7 +2632,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
2780
2632
|
Vxr: function() { return /* reexport */ constants/* ANIMATION_END_EVENT_NAMES */.Vx; },
|
|
2781
2633
|
fSi: function() { return /* reexport */ string/* AsyncFunction */.fS; },
|
|
2782
2634
|
rqe: function() { return /* reexport */ constants/* CLASS_TO_TYPE_MAPPING */.rq; },
|
|
2783
|
-
l_R: function() { return /* reexport */ CLI_COLOR; },
|
|
2635
|
+
l_R: function() { return /* reexport */ constants/* CLI_COLOR */.l_; },
|
|
2784
2636
|
jGn: function() { return /* reexport */ constants/* CLOSE_EVENT_NAMES */.jG; },
|
|
2785
2637
|
jgV: function() { return /* reexport */ constants/* CONSOLE_METHODS */.jg; },
|
|
2786
2638
|
hrV: function() { return /* reexport */ DATE_TIME_PATTERN_CACHE; },
|
|
@@ -3059,7 +2911,7 @@ __webpack_require__.d(Logger_namespaceObject, {
|
|
|
3059
2911
|
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.includes.js
|
|
3060
2912
|
var es_array_includes = __webpack_require__(6);
|
|
3061
2913
|
// EXTERNAL MODULE: ./src/indicators.ts
|
|
3062
|
-
var indicators = __webpack_require__(
|
|
2914
|
+
var indicators = __webpack_require__(71);
|
|
3063
2915
|
// NAMESPACE OBJECT (decoupled): ./src/indicators.ts
|
|
3064
2916
|
var indicators_namespaceObject = {};
|
|
3065
2917
|
__webpack_require__.r(indicators_namespaceObject);
|
|
@@ -3248,7 +3100,7 @@ _visit(_edge2[1],[_node])}}catch(err){_iterator6.e(err)}finally{_iterator6.f()}s
|
|
|
3248
3100
|
* @returns Sliced version of given object.
|
|
3249
3101
|
*/var unique=function unique(data){var result=[];var _iterator7=_createForOfIteratorHelper(makeArray(data)),_step7;try{for(_iterator7.s();!(_step7=_iterator7.n()).done;){var value=_step7.value;if(!result.includes(value))result.push(value)}}catch(err){_iterator7.e(err)}finally{_iterator7.f()}return result};
|
|
3250
3102
|
// EXTERNAL MODULE: ./src/context.ts
|
|
3251
|
-
var context = __webpack_require__(
|
|
3103
|
+
var context = __webpack_require__(39);
|
|
3252
3104
|
;// ./src/utility.ts
|
|
3253
3105
|
// #!/usr/bin/env babel-node
|
|
3254
3106
|
// -*- coding: utf-8 -*-
|
|
@@ -3388,6 +3240,8 @@ var first=domNodeList[0];if(first.parentNode)first.parentNode.insertBefore(wrapp
|
|
|
3388
3240
|
* @returns List of unwrapped nodes.
|
|
3389
3241
|
*/var unwrap=function unwrap(domNode){var parent=domNode.parentNode;var result=[];// NOTE: We need to use "Array.from" to copy the list.
|
|
3390
3242
|
for(var _i6=0,_Array$from=Array.from(domNode.childNodes);_i6<_Array$from.length;_i6++){var childNode=_Array$from[_i6];result.push(childNode);if(parent)parent.insertBefore(childNode,domNode)}if(parent)parent.removeChild(domNode);return result};
|
|
3243
|
+
// EXTERNAL MODULE: ./src/constants.ts + 2 modules
|
|
3244
|
+
var constants = __webpack_require__(10);
|
|
3391
3245
|
;// ./src/cli.ts
|
|
3392
3246
|
// #!/usr/bin/env babel-node
|
|
3393
3247
|
// -*- coding: utf-8 -*-
|
|
@@ -3404,9 +3258,12 @@ for(var _i6=0,_Array$from=Array.from(domNode.childNodes);_i6<_Array$from.length;
|
|
|
3404
3258
|
naming 3.0 unported license.
|
|
3405
3259
|
See https://creativecommons.org/licenses/by/3.0/deed.de
|
|
3406
3260
|
endregion
|
|
3407
|
-
|
|
3408
|
-
|
|
3409
|
-
|
|
3261
|
+
*//*
|
|
3262
|
+
NOTE: "CLI_COLOR" is defined in and re-exported from "./constants" (instead
|
|
3263
|
+
of being declared here directly) to avoid a webpack code generation issue
|
|
3264
|
+
where an import-less module loses its export declarations when bundled as a
|
|
3265
|
+
dependency of another entry point.
|
|
3266
|
+
*/
|
|
3410
3267
|
;// ./src/cookie.ts
|
|
3411
3268
|
// #!/usr/bin/env babel-node
|
|
3412
3269
|
// -*- coding: utf-8 -*-
|
|
@@ -3449,7 +3306,7 @@ var constants = __webpack_require__(10);
|
|
|
3449
3306
|
* @returns A boolean indicating whether cookie could be set or not.
|
|
3450
3307
|
*/var setCookie=function setCookie(name,value,givenOptions){if(givenOptions===void 0){givenOptions={}}if(context/* globalContext */.Lz.document){var _globalContext$locati;var options=cookie_objectSpread({domain:"",httpOnly:false,minimal:false,numberOfDaysUntilExpiration:365,path:"/",sameSite:"Lax",secure:true},givenOptions);var now=new Date;now.setTime(now.getTime()+options.numberOfDaysUntilExpiration*24*60*60*1000);if(options.domain===""&&(_globalContext$locati=context/* globalContext */.Lz.location)!==null&&_globalContext$locati!==void 0&&_globalContext$locati.hostname)options.domain=context/* globalContext */.Lz.location.hostname;context/* globalContext */.Lz.document.cookie="".concat(name,"=").concat(value)+(options.minimal?"":";Expires=\"".concat(now.toUTCString())+";Path=".concat(options.path)+";Domain=".concat(options.domain)+(options.sameSite?";SameSite=".concat(options.sameSite):"")+(options.secure?";Secure":"")+(options.httpOnly?";HttpOnly":""));return true}return false};
|
|
3451
3308
|
// EXTERNAL MODULE: ./src/object.ts
|
|
3452
|
-
var src_object = __webpack_require__(
|
|
3309
|
+
var src_object = __webpack_require__(18);
|
|
3453
3310
|
// NAMESPACE OBJECT (decoupled): ./src/object.ts
|
|
3454
3311
|
var object_namespaceObject = {};
|
|
3455
3312
|
__webpack_require__.r(object_namespaceObject);
|
|
@@ -3541,7 +3398,7 @@ __webpack_require__.d(object_namespaceObject, {
|
|
|
3541
3398
|
* @returns A Promise indicating whether the image was loaded.
|
|
3542
3399
|
*/var cacheImage=function cacheImage(url){return new Promise(function(resolve,reject){var imageElement=document.createElement("img");imageElement.onload=function(){var isLoaded=imageElement.complete;imageElement.remove();if(isLoaded)resolve();else reject(new Error("Image could not be loaded."))};imageElement.src=url})};
|
|
3543
3400
|
// EXTERNAL MODULE: ./src/string.ts
|
|
3544
|
-
var string = __webpack_require__(
|
|
3401
|
+
var string = __webpack_require__(73);
|
|
3545
3402
|
// NAMESPACE OBJECT (decoupled): ./src/string.ts
|
|
3546
3403
|
var string_namespaceObject = {};
|
|
3547
3404
|
__webpack_require__.r(string_namespaceObject);
|
|
@@ -3813,7 +3670,7 @@ return viewArrayAsScope(value,childrenPropertyNames,propertyReferenceKeys)}if(va
|
|
|
3813
3670
|
endregion
|
|
3814
3671
|
*/var expression_evaluateExpression=evaluators;/* harmony default export */ var expression = ((/* unused pure expression or super */ null && (expression_evaluateExpression)));
|
|
3815
3672
|
// EXTERNAL MODULE: ./src/filesystem.ts
|
|
3816
|
-
var filesystem = __webpack_require__(
|
|
3673
|
+
var filesystem = __webpack_require__(74);
|
|
3817
3674
|
// NAMESPACE OBJECT (decoupled): ./src/filesystem.ts
|
|
3818
3675
|
var filesystem_namespaceObject = {};
|
|
3819
3676
|
__webpack_require__.r(filesystem_namespaceObject);
|
|
@@ -3868,7 +3725,7 @@ parameter=/([^= ]+) *=>.*/m.exec(functionCode);var names=[];if(parameter&¶me
|
|
|
3868
3725
|
* @returns The inverted filter.
|
|
3869
3726
|
*/var invertArrayFilter=function invertArrayFilter(filter){return function(data){if(Array.isArray(data)){for(var _len=arguments.length,additionalParameter=new Array(_len>1?_len-1:0),_key=1;_key<_len;_key++){additionalParameter[_key-1]=arguments[_key]}var filteredData=filter.apply(void 0,[data].concat(additionalParameter));var result=[];if(filteredData.length){var _iterator2=function_createForOfIteratorHelper(data),_step2;try{for(_iterator2.s();!(_step2=_iterator2.n()).done;){var date=_step2.value;if(!filteredData.includes(date))result.push(date)}}catch(err){_iterator2.e(err)}finally{_iterator2.f()}}else result=data;return result}return data}};
|
|
3870
3727
|
// EXTERNAL MODULE: ./src/number.ts
|
|
3871
|
-
var number = __webpack_require__(
|
|
3728
|
+
var number = __webpack_require__(72);
|
|
3872
3729
|
// NAMESPACE OBJECT (decoupled): ./src/number.ts
|
|
3873
3730
|
var number_namespaceObject = {};
|
|
3874
3731
|
__webpack_require__.r(number_namespaceObject);
|
|
@@ -3914,7 +3771,7 @@ __webpack_require__.d(number_namespaceObject, {
|
|
|
3914
3771
|
* @returns Given child process meta data.
|
|
3915
3772
|
*/var handleChildProcess=function handleChildProcess(childProcess){if(childProcess.stdout)childProcess.stdout.pipe(process.stdout);if(childProcess.stderr)childProcess.stderr.pipe(process.stderr);childProcess.on("close",function(returnCode){if(returnCode!==0)console.error("Task exited with error code ".concat(String(returnCode)))});return childProcess};
|
|
3916
3773
|
// EXTERNAL MODULE: ./src/module.ts
|
|
3917
|
-
var src_module = __webpack_require__(
|
|
3774
|
+
var src_module = __webpack_require__(17);
|
|
3918
3775
|
// NAMESPACE OBJECT (decoupled): ./src/module.ts
|
|
3919
3776
|
var module_namespaceObject = {};
|
|
3920
3777
|
__webpack_require__.r(module_namespaceObject);
|
|
@@ -3946,7 +3803,7 @@ __webpack_require__.d(module_namespaceObject, {
|
|
|
3946
3803
|
naming 3.0 unported license.
|
|
3947
3804
|
See https://creativecommons.org/licenses/by/3.0/deed.de
|
|
3948
3805
|
endregion
|
|
3949
|
-
*/var _Logger;function Logger_typeof(o){"@babel/helpers - typeof";return Logger_typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(o){return typeof o}:function(o){return o&&"function"==typeof Symbol&&o.constructor===Symbol&&o!==Symbol.prototype?"symbol":typeof o},Logger_typeof(o)}function Logger_slicedToArray(r,e){return Logger_arrayWithHoles(r)||Logger_iterableToArrayLimit(r,e)||Logger_unsupportedIterableToArray(r,e)||Logger_nonIterableRest()}function Logger_nonIterableRest(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function Logger_unsupportedIterableToArray(r,a){if(r){if("string"==typeof r)return Logger_arrayLikeToArray(r,a);var t={}.toString.call(r).slice(8,-1);return"Object"===t&&r.constructor&&(t=r.constructor.name),"Map"===t||"Set"===t?Array.from(r):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?Logger_arrayLikeToArray(r,a):void 0}}function Logger_arrayLikeToArray(r,a){(null==a||a>r.length)&&(a=r.length);for(var e=0,n=Array(a);e<a;e++)n[e]=r[e];return n}function Logger_iterableToArrayLimit(r,l){var t=null==r?null:"undefined"!=typeof Symbol&&r[Symbol.iterator]||r["@@iterator"];if(null!=t){var e,n,i,u,a=[],f=!0,o=!1;try{if(i=(t=t.call(r)).next,0===l){if(Object(t)!==t)return;f=!1}else for(;!(f=(e=i.call(t)).done)&&(a.push(e.value),a.length!==l);f=!0);}catch(r){o=!0,n=r}finally{try{if(!f&&null!=t.return&&(u=t.return(),Object(u)!==u))return}finally{if(o)throw n}}return a}}function Logger_arrayWithHoles(r){if(Array.isArray(r))return r}function _classCallCheck(a,n){if(!(a instanceof n))throw new TypeError("Cannot call a class as a function")}function _defineProperties(e,r){for(var t=0;t<r.length;t++){var o=r[t];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,Logger_toPropertyKey(o.key),o)}}function _createClass(e,r,t){return r&&_defineProperties(e.prototype,r),t&&_defineProperties(e,t),Object.defineProperty(e,"prototype",{writable:!1}),e}function Logger_defineProperty(e,r,t){return(r=Logger_toPropertyKey(r))in e?Object.defineProperty(e,r,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[r]=t,e}function Logger_toPropertyKey(t){var i=Logger_toPrimitive(t,"string");return"symbol"==Logger_typeof(i)?i:i+""}function Logger_toPrimitive(t,r){if("object"!=Logger_typeof(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var i=e.call(t,r||"default");if("object"!=Logger_typeof(i))return i;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===r?String:Number)(t)};var LEVELS=["error","critical","warn","info","debug"];var LEVELS_COLOR=[CLI_COLOR.red,CLI_COLOR.magenta,CLI_COLOR.yellow,CLI_COLOR.green,CLI_COLOR.blue];/**
|
|
3806
|
+
*/var _Logger;function Logger_typeof(o){"@babel/helpers - typeof";return Logger_typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(o){return typeof o}:function(o){return o&&"function"==typeof Symbol&&o.constructor===Symbol&&o!==Symbol.prototype?"symbol":typeof o},Logger_typeof(o)}function Logger_slicedToArray(r,e){return Logger_arrayWithHoles(r)||Logger_iterableToArrayLimit(r,e)||Logger_unsupportedIterableToArray(r,e)||Logger_nonIterableRest()}function Logger_nonIterableRest(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function Logger_unsupportedIterableToArray(r,a){if(r){if("string"==typeof r)return Logger_arrayLikeToArray(r,a);var t={}.toString.call(r).slice(8,-1);return"Object"===t&&r.constructor&&(t=r.constructor.name),"Map"===t||"Set"===t?Array.from(r):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?Logger_arrayLikeToArray(r,a):void 0}}function Logger_arrayLikeToArray(r,a){(null==a||a>r.length)&&(a=r.length);for(var e=0,n=Array(a);e<a;e++)n[e]=r[e];return n}function Logger_iterableToArrayLimit(r,l){var t=null==r?null:"undefined"!=typeof Symbol&&r[Symbol.iterator]||r["@@iterator"];if(null!=t){var e,n,i,u,a=[],f=!0,o=!1;try{if(i=(t=t.call(r)).next,0===l){if(Object(t)!==t)return;f=!1}else for(;!(f=(e=i.call(t)).done)&&(a.push(e.value),a.length!==l);f=!0);}catch(r){o=!0,n=r}finally{try{if(!f&&null!=t.return&&(u=t.return(),Object(u)!==u))return}finally{if(o)throw n}}return a}}function Logger_arrayWithHoles(r){if(Array.isArray(r))return r}function _classCallCheck(a,n){if(!(a instanceof n))throw new TypeError("Cannot call a class as a function")}function _defineProperties(e,r){for(var t=0;t<r.length;t++){var o=r[t];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,Logger_toPropertyKey(o.key),o)}}function _createClass(e,r,t){return r&&_defineProperties(e.prototype,r),t&&_defineProperties(e,t),Object.defineProperty(e,"prototype",{writable:!1}),e}function Logger_defineProperty(e,r,t){return(r=Logger_toPropertyKey(r))in e?Object.defineProperty(e,r,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[r]=t,e}function Logger_toPropertyKey(t){var i=Logger_toPrimitive(t,"string");return"symbol"==Logger_typeof(i)?i:i+""}function Logger_toPrimitive(t,r){if("object"!=Logger_typeof(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var i=e.call(t,r||"default");if("object"!=Logger_typeof(i))return i;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===r?String:Number)(t)};var LEVELS=["error","critical","warn","info","debug"];var LEVELS_COLOR=[constants/* CLI_COLOR */.l_.red,constants/* CLI_COLOR */.l_.magenta,constants/* CLI_COLOR */.l_.yellow,constants/* CLI_COLOR */.l_.green,constants/* CLI_COLOR */.l_.blue];/**
|
|
3950
3807
|
* This plugin provides such interface logic like generic controller logic for
|
|
3951
3808
|
* integrating plugins into $, mutual exclusion for dependent gui elements,
|
|
3952
3809
|
* logging additional string, array or function handling. A set of helper
|
|
@@ -3973,8 +3830,8 @@ __webpack_require__.d(module_namespaceObject, {
|
|
|
3973
3830
|
* log level specific annotations.
|
|
3974
3831
|
* @param level - Description of log messages importance.
|
|
3975
3832
|
* @param additionalArguments - Additional values to print.
|
|
3976
|
-
*/},{key:"log",value:function log(object,force,avoidAnnotation,level){if(force===void 0){force=false}if(avoidAnnotation===void 0){avoidAnnotation=false}if(level===void 0){level="info"}var currentLevelIndex=LEVELS.indexOf(this.level);var levelIndex=LEVELS.indexOf(level);if(force||currentLevelIndex>=levelIndex){var _globalContext$consol;var messages=[];var annotation="".concat(LEVELS_COLOR[levelIndex]).concat(level)+"".concat(CLI_COLOR.default,":").concat(this.name,":")+"".concat(new Date().toISOString(),":");for(var _len=arguments.length,additionalArguments=new Array(_len>4?_len-4:0),_key=4;_key<_len;_key++){additionalArguments[_key-4]=arguments[_key]}if(avoidAnnotation)messages.push(object);else if(typeof object==="string")messages.push.apply(messages,[annotation,object].concat(additionalArguments));else if((0,indicators/* isNumeric */.kf)(object)||typeof object==="boolean")messages.push.apply(messages,[annotation,object.toString()].concat(additionalArguments));else{var multiLineAnnotation=annotation.substring(0,annotation.length-1);var lineLength=79-2;// Color codes are invisible so we have to add it.
|
|
3977
|
-
var remainingLength=lineLength+LEVELS_COLOR[levelIndex].length+CLI_COLOR.default.length-multiLineAnnotation.length;var halfRemainingLength=Math.floor(remainingLength/2);this.log(",".concat("-".repeat(halfRemainingLength))+multiLineAnnotation+"-".repeat(halfRemainingLength)+"".concat("-".repeat(remainingLength%2),","),force,true,level);this.log(object,force,true,level);this.log("'".concat("-".repeat(lineLength),"'"),force,true,level)}if(messages.length)if(!(context/* globalContext */.Lz.console&&level in context/* globalContext */.Lz.console)||context/* globalContext */.Lz.console[level]===context/* NOOP */.tE){var _globalContext$window;if(Object.prototype.hasOwnProperty.call(context/* globalContext */.Lz,"window")&&Object.prototype.hasOwnProperty.call(context/* globalContext */.Lz.window,"alert"))(_globalContext$window=context/* globalContext */.Lz.window)===null||_globalContext$window===void 0||_globalContext$window.alert(messages.join(" "))}else(_globalContext$consol=context/* globalContext */.Lz.console)[level].apply(_globalContext$consol,messages)}}/**
|
|
3833
|
+
*/},{key:"log",value:function log(object,force,avoidAnnotation,level){if(force===void 0){force=false}if(avoidAnnotation===void 0){avoidAnnotation=false}if(level===void 0){level="info"}var currentLevelIndex=LEVELS.indexOf(this.level);var levelIndex=LEVELS.indexOf(level);if(force||currentLevelIndex>=levelIndex){var _globalContext$consol;var messages=[];var annotation="".concat(LEVELS_COLOR[levelIndex]).concat(level)+"".concat(constants/* CLI_COLOR */.l_.default,":").concat(this.name,":")+"".concat(new Date().toISOString(),":");for(var _len=arguments.length,additionalArguments=new Array(_len>4?_len-4:0),_key=4;_key<_len;_key++){additionalArguments[_key-4]=arguments[_key]}if(avoidAnnotation)messages.push(object);else if(typeof object==="string")messages.push.apply(messages,[annotation,object].concat(additionalArguments));else if((0,indicators/* isNumeric */.kf)(object)||typeof object==="boolean")messages.push.apply(messages,[annotation,object.toString()].concat(additionalArguments));else{var multiLineAnnotation=annotation.substring(0,annotation.length-1);var lineLength=79-2;// Color codes are invisible so we have to add it.
|
|
3834
|
+
var remainingLength=lineLength+LEVELS_COLOR[levelIndex].length+constants/* CLI_COLOR */.l_.default.length-multiLineAnnotation.length;var halfRemainingLength=Math.floor(remainingLength/2);this.log(",".concat("-".repeat(halfRemainingLength))+multiLineAnnotation+"-".repeat(halfRemainingLength)+"".concat("-".repeat(remainingLength%2),","),force,true,level);this.log(object,force,true,level);this.log("'".concat("-".repeat(lineLength),"'"),force,true,level)}if(messages.length)if(!(context/* globalContext */.Lz.console&&level in context/* globalContext */.Lz.console)||context/* globalContext */.Lz.console[level]===context/* NOOP */.tE){var _globalContext$window;if(Object.prototype.hasOwnProperty.call(context/* globalContext */.Lz,"window")&&Object.prototype.hasOwnProperty.call(context/* globalContext */.Lz.window,"alert"))(_globalContext$window=context/* globalContext */.Lz.window)===null||_globalContext$window===void 0||_globalContext$window.alert(messages.join(" "))}else(_globalContext$consol=context/* globalContext */.Lz.console)[level].apply(_globalContext$consol,messages)}}/**
|
|
3978
3835
|
* Wrapper method for the native console method usually provided by
|
|
3979
3836
|
* interpreter.
|
|
3980
3837
|
* @param object - Any object to print.
|
|
@@ -4070,7 +3927,7 @@ var remainingLength=lineLength+LEVELS_COLOR[levelIndex].length+CLI_COLOR.default
|
|
|
4070
3927
|
*/
|
|
4071
3928
|
|
|
4072
3929
|
/***/ }),
|
|
4073
|
-
/*
|
|
3930
|
+
/* 76 */
|
|
4074
3931
|
/***/ (function(__unused_webpack_module, exports) {
|
|
4075
3932
|
|
|
4076
3933
|
|
|
@@ -4090,12 +3947,113 @@ exports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
|
|
|
4090
3947
|
|
|
4091
3948
|
|
|
4092
3949
|
/***/ }),
|
|
4093
|
-
/*
|
|
3950
|
+
/* 77 */
|
|
3951
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
3952
|
+
|
|
3953
|
+
|
|
3954
|
+
var DESCRIPTORS = __webpack_require__(3);
|
|
3955
|
+
var hasOwn = __webpack_require__(5);
|
|
3956
|
+
|
|
3957
|
+
var FunctionPrototype = Function.prototype;
|
|
3958
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
3959
|
+
var getDescriptor = DESCRIPTORS && Object.getOwnPropertyDescriptor;
|
|
3960
|
+
|
|
3961
|
+
var EXISTS = hasOwn(FunctionPrototype, 'name');
|
|
3962
|
+
// additional protection from minified / mangled / dropped function names
|
|
3963
|
+
var PROPER = EXISTS && function something() { /* empty */ }.name === 'something';
|
|
3964
|
+
var CONFIGURABLE = EXISTS && (!DESCRIPTORS || (DESCRIPTORS && getDescriptor(FunctionPrototype, 'name').configurable));
|
|
3965
|
+
|
|
3966
|
+
module.exports = {
|
|
3967
|
+
EXISTS: EXISTS,
|
|
3968
|
+
PROPER: PROPER,
|
|
3969
|
+
i2: CONFIGURABLE
|
|
3970
|
+
};
|
|
3971
|
+
|
|
3972
|
+
|
|
3973
|
+
/***/ }),
|
|
3974
|
+
/* 78 */
|
|
3975
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
3976
|
+
|
|
3977
|
+
|
|
3978
|
+
var NATIVE_WEAK_MAP = __webpack_require__(56);
|
|
3979
|
+
var globalThis = __webpack_require__(0);
|
|
3980
|
+
var isObject = __webpack_require__(7);
|
|
3981
|
+
var createNonEnumerableProperty = __webpack_require__(32);
|
|
3982
|
+
var hasOwn = __webpack_require__(5);
|
|
3983
|
+
var shared = __webpack_require__(14);
|
|
3984
|
+
var sharedKey = __webpack_require__(35);
|
|
3985
|
+
var hiddenKeys = __webpack_require__(36);
|
|
3986
|
+
|
|
3987
|
+
var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
|
|
3988
|
+
var TypeError = globalThis.TypeError;
|
|
3989
|
+
var WeakMap = globalThis.WeakMap;
|
|
3990
|
+
var set, get, has;
|
|
3991
|
+
|
|
3992
|
+
var enforce = function (it) {
|
|
3993
|
+
return has(it) ? get(it) : set(it, {});
|
|
3994
|
+
};
|
|
3995
|
+
|
|
3996
|
+
var getterFor = function (TYPE) {
|
|
3997
|
+
return function (it) {
|
|
3998
|
+
var state;
|
|
3999
|
+
if (!isObject(it) || (state = get(it)).type !== TYPE) {
|
|
4000
|
+
throw new TypeError('Incompatible receiver, ' + TYPE + ' required');
|
|
4001
|
+
} return state;
|
|
4002
|
+
};
|
|
4003
|
+
};
|
|
4004
|
+
|
|
4005
|
+
if (NATIVE_WEAK_MAP || shared.state) {
|
|
4006
|
+
var store = shared.state || (shared.state = new WeakMap());
|
|
4007
|
+
/* eslint-disable no-self-assign -- prototype methods protection */
|
|
4008
|
+
store.get = store.get;
|
|
4009
|
+
store.has = store.has;
|
|
4010
|
+
store.set = store.set;
|
|
4011
|
+
/* eslint-enable no-self-assign -- prototype methods protection */
|
|
4012
|
+
set = function (it, metadata) {
|
|
4013
|
+
if (store.has(it)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
|
|
4014
|
+
metadata.facade = it;
|
|
4015
|
+
store.set(it, metadata);
|
|
4016
|
+
return metadata;
|
|
4017
|
+
};
|
|
4018
|
+
get = function (it) {
|
|
4019
|
+
return store.get(it) || {};
|
|
4020
|
+
};
|
|
4021
|
+
has = function (it) {
|
|
4022
|
+
return store.has(it);
|
|
4023
|
+
};
|
|
4024
|
+
} else {
|
|
4025
|
+
var STATE = sharedKey('state');
|
|
4026
|
+
hiddenKeys[STATE] = true;
|
|
4027
|
+
set = function (it, metadata) {
|
|
4028
|
+
if (hasOwn(it, STATE)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
|
|
4029
|
+
metadata.facade = it;
|
|
4030
|
+
createNonEnumerableProperty(it, STATE, metadata);
|
|
4031
|
+
return metadata;
|
|
4032
|
+
};
|
|
4033
|
+
get = function (it) {
|
|
4034
|
+
return hasOwn(it, STATE) ? it[STATE] : {};
|
|
4035
|
+
};
|
|
4036
|
+
has = function (it) {
|
|
4037
|
+
return hasOwn(it, STATE);
|
|
4038
|
+
};
|
|
4039
|
+
}
|
|
4040
|
+
|
|
4041
|
+
module.exports = {
|
|
4042
|
+
set: set,
|
|
4043
|
+
get: get,
|
|
4044
|
+
has: has,
|
|
4045
|
+
enforce: enforce,
|
|
4046
|
+
getterFor: getterFor
|
|
4047
|
+
};
|
|
4048
|
+
|
|
4049
|
+
|
|
4050
|
+
/***/ }),
|
|
4051
|
+
/* 79 */
|
|
4094
4052
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
4095
4053
|
|
|
4096
4054
|
|
|
4097
4055
|
var internalObjectKeys = __webpack_require__(37);
|
|
4098
|
-
var enumBugKeys = __webpack_require__(
|
|
4056
|
+
var enumBugKeys = __webpack_require__(16);
|
|
4099
4057
|
|
|
4100
4058
|
var hiddenKeys = enumBugKeys.concat('length', 'prototype');
|
|
4101
4059
|
|
|
@@ -4108,7 +4066,7 @@ exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
|
|
|
4108
4066
|
|
|
4109
4067
|
|
|
4110
4068
|
/***/ }),
|
|
4111
|
-
/*
|
|
4069
|
+
/* 80 */
|
|
4112
4070
|
/***/ (function(__unused_webpack_module, exports) {
|
|
4113
4071
|
|
|
4114
4072
|
|
|
@@ -4117,16 +4075,16 @@ exports.f = Object.getOwnPropertySymbols;
|
|
|
4117
4075
|
|
|
4118
4076
|
|
|
4119
4077
|
/***/ }),
|
|
4120
|
-
/*
|
|
4078
|
+
/* 81 */
|
|
4121
4079
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
4122
4080
|
|
|
4123
4081
|
|
|
4124
4082
|
var DESCRIPTORS = __webpack_require__(3);
|
|
4125
|
-
var V8_PROTOTYPE_DEFINE_BUG = __webpack_require__(
|
|
4083
|
+
var V8_PROTOTYPE_DEFINE_BUG = __webpack_require__(33);
|
|
4126
4084
|
var definePropertyModule = __webpack_require__(8);
|
|
4127
4085
|
var anObject = __webpack_require__(9);
|
|
4128
4086
|
var toIndexedObject = __webpack_require__(11);
|
|
4129
|
-
var objectKeys = __webpack_require__(
|
|
4087
|
+
var objectKeys = __webpack_require__(67);
|
|
4130
4088
|
|
|
4131
4089
|
// `Object.defineProperties` method
|
|
4132
4090
|
// https://tc39.es/ecma262/#sec-object.defineproperties
|
|
@@ -4144,14 +4102,14 @@ exports.f = DESCRIPTORS && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties :
|
|
|
4144
4102
|
|
|
4145
4103
|
|
|
4146
4104
|
/***/ }),
|
|
4147
|
-
/*
|
|
4105
|
+
/* 82 */
|
|
4148
4106
|
/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
|
|
4149
4107
|
|
|
4150
4108
|
|
|
4151
4109
|
var DESCRIPTORS = __webpack_require__(3);
|
|
4152
|
-
var defineBuiltInAccessor = __webpack_require__(
|
|
4153
|
-
var regExpFlagsDetection = __webpack_require__(
|
|
4154
|
-
var regExpFlagsGetterImplementation = __webpack_require__(
|
|
4110
|
+
var defineBuiltInAccessor = __webpack_require__(69);
|
|
4111
|
+
var regExpFlagsDetection = __webpack_require__(83);
|
|
4112
|
+
var regExpFlagsGetterImplementation = __webpack_require__(70);
|
|
4155
4113
|
|
|
4156
4114
|
// `RegExp.prototype.flags` getter
|
|
4157
4115
|
// https://tc39.es/ecma262/#sec-get-regexp.prototype.flags
|
|
@@ -4165,6 +4123,59 @@ if (DESCRIPTORS && !regExpFlagsDetection.correct) {
|
|
|
4165
4123
|
}
|
|
4166
4124
|
|
|
4167
4125
|
|
|
4126
|
+
/***/ }),
|
|
4127
|
+
/* 83 */
|
|
4128
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
4129
|
+
|
|
4130
|
+
|
|
4131
|
+
var globalThis = __webpack_require__(0);
|
|
4132
|
+
var fails = __webpack_require__(1);
|
|
4133
|
+
|
|
4134
|
+
// babel-minify and Closure Compiler transpiles RegExp('.', 'd') -> /./d and it causes SyntaxError
|
|
4135
|
+
var RegExp = globalThis.RegExp;
|
|
4136
|
+
|
|
4137
|
+
var FLAGS_GETTER_IS_CORRECT = !fails(function () {
|
|
4138
|
+
var INDICES_SUPPORT = true;
|
|
4139
|
+
try {
|
|
4140
|
+
RegExp('.', 'd');
|
|
4141
|
+
} catch (error) {
|
|
4142
|
+
INDICES_SUPPORT = false;
|
|
4143
|
+
}
|
|
4144
|
+
|
|
4145
|
+
var O = {};
|
|
4146
|
+
// modern V8 bug
|
|
4147
|
+
var calls = '';
|
|
4148
|
+
var expected = INDICES_SUPPORT ? 'dgimsy' : 'gimsy';
|
|
4149
|
+
|
|
4150
|
+
var addGetter = function (key, chr) {
|
|
4151
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
4152
|
+
Object.defineProperty(O, key, { get: function () {
|
|
4153
|
+
calls += chr;
|
|
4154
|
+
return true;
|
|
4155
|
+
} });
|
|
4156
|
+
};
|
|
4157
|
+
|
|
4158
|
+
var pairs = {
|
|
4159
|
+
dotAll: 's',
|
|
4160
|
+
global: 'g',
|
|
4161
|
+
ignoreCase: 'i',
|
|
4162
|
+
multiline: 'm',
|
|
4163
|
+
sticky: 'y'
|
|
4164
|
+
};
|
|
4165
|
+
|
|
4166
|
+
if (INDICES_SUPPORT) pairs.hasIndices = 'd';
|
|
4167
|
+
|
|
4168
|
+
for (var key in pairs) addGetter(key, pairs[key]);
|
|
4169
|
+
|
|
4170
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
4171
|
+
var result = Object.getOwnPropertyDescriptor(RegExp.prototype, 'flags').get.call(O);
|
|
4172
|
+
|
|
4173
|
+
return result !== expected || calls !== expected;
|
|
4174
|
+
});
|
|
4175
|
+
|
|
4176
|
+
module.exports = { correct: FLAGS_GETTER_IS_CORRECT };
|
|
4177
|
+
|
|
4178
|
+
|
|
4168
4179
|
/***/ }),
|
|
4169
4180
|
/* 84 */
|
|
4170
4181
|
/***/ (function(module) {
|
|
@@ -4214,93 +4225,66 @@ module.exports = webpackEmptyContext;
|
|
|
4214
4225
|
/******/
|
|
4215
4226
|
/************************************************************************/
|
|
4216
4227
|
/******/ /* webpack/runtime/compat get default export */
|
|
4217
|
-
/******/
|
|
4218
|
-
/******/
|
|
4219
|
-
/******/
|
|
4220
|
-
/******/
|
|
4221
|
-
/******/
|
|
4222
|
-
/******/
|
|
4223
|
-
/******/
|
|
4224
|
-
/******/
|
|
4225
|
-
/******/ };
|
|
4226
|
-
/******/ }();
|
|
4228
|
+
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
|
4229
|
+
/******/ __webpack_require__.n = function(module) {
|
|
4230
|
+
/******/ var getter = module && module.__esModule ?
|
|
4231
|
+
/******/ function() { return module['default']; } :
|
|
4232
|
+
/******/ function() { return module; };
|
|
4233
|
+
/******/ __webpack_require__.d(getter, { a: getter });
|
|
4234
|
+
/******/ return getter;
|
|
4235
|
+
/******/ };
|
|
4227
4236
|
/******/
|
|
4228
4237
|
/******/ /* webpack/runtime/define property getters */
|
|
4229
|
-
/******/
|
|
4230
|
-
/******/
|
|
4231
|
-
/******/
|
|
4232
|
-
/******/ if(
|
|
4233
|
-
/******/
|
|
4234
|
-
/******/ while(i < definition.length) {
|
|
4235
|
-
/******/ var key = definition[i++];
|
|
4236
|
-
/******/ var binding = definition[i++];
|
|
4237
|
-
/******/ if(!__webpack_require__.o(exports, key)) {
|
|
4238
|
-
/******/ if(binding === 0) {
|
|
4239
|
-
/******/ Object.defineProperty(exports, key, { enumerable: true, value: definition[i++] });
|
|
4240
|
-
/******/ } else {
|
|
4241
|
-
/******/ Object.defineProperty(exports, key, { enumerable: true, get: binding });
|
|
4242
|
-
/******/ }
|
|
4243
|
-
/******/ } else if(binding === 0) { i++; }
|
|
4244
|
-
/******/ }
|
|
4245
|
-
/******/ } else {
|
|
4246
|
-
/******/ for(var key in definition) {
|
|
4247
|
-
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
|
|
4248
|
-
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
|
|
4249
|
-
/******/ }
|
|
4250
|
-
/******/ }
|
|
4238
|
+
/******/ // define getter/value functions for harmony exports
|
|
4239
|
+
/******/ __webpack_require__.d = function(exports, definition) {
|
|
4240
|
+
/******/ for(var key in definition) {
|
|
4241
|
+
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
|
|
4242
|
+
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
|
|
4251
4243
|
/******/ }
|
|
4252
|
-
/******/ }
|
|
4253
|
-
/******/ }
|
|
4244
|
+
/******/ }
|
|
4245
|
+
/******/ };
|
|
4254
4246
|
/******/
|
|
4255
4247
|
/******/ /* webpack/runtime/global */
|
|
4256
|
-
/******/
|
|
4257
|
-
/******/
|
|
4258
|
-
/******/
|
|
4259
|
-
/******/
|
|
4260
|
-
/******/
|
|
4261
|
-
/******/
|
|
4262
|
-
/******/
|
|
4263
|
-
/******/
|
|
4264
|
-
/******/ })();
|
|
4265
|
-
/******/ }();
|
|
4248
|
+
/******/ __webpack_require__.g = (function() {
|
|
4249
|
+
/******/ if (typeof globalThis === 'object') return globalThis;
|
|
4250
|
+
/******/ try {
|
|
4251
|
+
/******/ return this || new Function('return this')();
|
|
4252
|
+
/******/ } catch (e) {
|
|
4253
|
+
/******/ if (typeof window === 'object') return window;
|
|
4254
|
+
/******/ }
|
|
4255
|
+
/******/ })();
|
|
4266
4256
|
/******/
|
|
4267
4257
|
/******/ /* webpack/runtime/harmony module decorator */
|
|
4268
|
-
/******/
|
|
4269
|
-
/******/
|
|
4270
|
-
/******/
|
|
4271
|
-
/******/
|
|
4272
|
-
/******/
|
|
4273
|
-
/******/
|
|
4274
|
-
/******/
|
|
4275
|
-
/******/
|
|
4276
|
-
/******/
|
|
4277
|
-
/******/
|
|
4278
|
-
/******/
|
|
4279
|
-
/******/ };
|
|
4280
|
-
/******/ }();
|
|
4258
|
+
/******/ __webpack_require__.hmd = function(module) {
|
|
4259
|
+
/******/ module = Object.create(module);
|
|
4260
|
+
/******/ if (!module.children) module.children = [];
|
|
4261
|
+
/******/ Object.defineProperty(module, 'exports', {
|
|
4262
|
+
/******/ enumerable: true,
|
|
4263
|
+
/******/ set: function() {
|
|
4264
|
+
/******/ throw new Error('ES Modules may not assign module.exports or exports.*, Use ESM export syntax, instead: ' + module.id);
|
|
4265
|
+
/******/ }
|
|
4266
|
+
/******/ });
|
|
4267
|
+
/******/ return module;
|
|
4268
|
+
/******/ };
|
|
4281
4269
|
/******/
|
|
4282
4270
|
/******/ /* webpack/runtime/hasOwnProperty shorthand */
|
|
4283
|
-
/******/
|
|
4284
|
-
/******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }
|
|
4285
|
-
/******/ }();
|
|
4271
|
+
/******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); };
|
|
4286
4272
|
/******/
|
|
4287
4273
|
/******/ /* webpack/runtime/make namespace object */
|
|
4288
|
-
/******/
|
|
4289
|
-
/******/
|
|
4290
|
-
/******/
|
|
4291
|
-
/******/
|
|
4292
|
-
/******/
|
|
4293
|
-
/******/
|
|
4294
|
-
/******/
|
|
4295
|
-
/******/ };
|
|
4296
|
-
/******/ }();
|
|
4274
|
+
/******/ // define __esModule on exports
|
|
4275
|
+
/******/ __webpack_require__.r = function(exports) {
|
|
4276
|
+
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
|
4277
|
+
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
4278
|
+
/******/ }
|
|
4279
|
+
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
|
4280
|
+
/******/ };
|
|
4297
4281
|
/******/
|
|
4298
4282
|
/************************************************************************/
|
|
4299
4283
|
/******/
|
|
4300
4284
|
/******/ // module cache are used so entry inlining is disabled
|
|
4301
4285
|
/******/ // startup
|
|
4302
4286
|
/******/ // Load entry module and return exports
|
|
4303
|
-
/******/ var __webpack_exports__ = __webpack_require__(
|
|
4287
|
+
/******/ var __webpack_exports__ = __webpack_require__(75);
|
|
4304
4288
|
/******/ var __webpack_exports__ABBREVIATIONS = __webpack_exports__.Iyg;
|
|
4305
4289
|
/******/ var __webpack_exports__ALLOWED_STARTING_VARIABLE_SYMBOLS = __webpack_exports__.bMn;
|
|
4306
4290
|
/******/ var __webpack_exports__ALLOWED_VARIABLE_SYMBOLS = __webpack_exports__.aLL;
|