@mapgis/webclient-vue-cesium 17.2.2 → 17.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-libs/webclient-vue-cesium.common.1.js +245 -236
- package/dist-libs/webclient-vue-cesium.common.2.js +19 -24
- package/dist-libs/webclient-vue-cesium.common.js +11441 -9533
- package/dist-libs/webclient-vue-cesium.css +1 -1
- package/dist-libs/webclient-vue-cesium.umd.1.js +245 -236
- package/dist-libs/webclient-vue-cesium.umd.2.js +19 -24
- package/dist-libs/webclient-vue-cesium.umd.js +11441 -9533
- package/dist-libs/webclient-vue-cesium.umd.min.1.js +2 -2
- package/dist-libs/webclient-vue-cesium.umd.min.2.js +2 -2
- package/dist-libs/webclient-vue-cesium.umd.min.js +81 -81
- package/package.json +7 -7
|
@@ -78,11 +78,11 @@ module.exports = function (fn, that) {
|
|
|
78
78
|
"use strict";
|
|
79
79
|
|
|
80
80
|
/* eslint-disable es/no-symbol -- required for testing */
|
|
81
|
-
var V8_VERSION = __webpack_require__("
|
|
81
|
+
var V8_VERSION = __webpack_require__("1212");
|
|
82
82
|
var fails = __webpack_require__("d039");
|
|
83
|
-
var
|
|
83
|
+
var globalThis = __webpack_require__("cfe9");
|
|
84
84
|
|
|
85
|
-
var $String =
|
|
85
|
+
var $String = globalThis.String;
|
|
86
86
|
|
|
87
87
|
// eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
|
|
88
88
|
module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
|
|
@@ -6929,10 +6929,10 @@ class Canvg {
|
|
|
6929
6929
|
"use strict";
|
|
6930
6930
|
|
|
6931
6931
|
var fails = __webpack_require__("d039");
|
|
6932
|
-
var
|
|
6932
|
+
var globalThis = __webpack_require__("cfe9");
|
|
6933
6933
|
|
|
6934
6934
|
// babel-minify and Closure Compiler transpiles RegExp('(?<a>b)', 'g') -> /(?<a>b)/g and it causes SyntaxError
|
|
6935
|
-
var $RegExp =
|
|
6935
|
+
var $RegExp = globalThis.RegExp;
|
|
6936
6936
|
|
|
6937
6937
|
module.exports = fails(function () {
|
|
6938
6938
|
var re = $RegExp('(?<a>b)', 'g');
|
|
@@ -6941,6 +6941,42 @@ module.exports = fails(function () {
|
|
|
6941
6941
|
});
|
|
6942
6942
|
|
|
6943
6943
|
|
|
6944
|
+
/***/ }),
|
|
6945
|
+
|
|
6946
|
+
/***/ "1212":
|
|
6947
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
6948
|
+
|
|
6949
|
+
"use strict";
|
|
6950
|
+
|
|
6951
|
+
var globalThis = __webpack_require__("cfe9");
|
|
6952
|
+
var userAgent = __webpack_require__("b5db");
|
|
6953
|
+
|
|
6954
|
+
var process = globalThis.process;
|
|
6955
|
+
var Deno = globalThis.Deno;
|
|
6956
|
+
var versions = process && process.versions || Deno && Deno.version;
|
|
6957
|
+
var v8 = versions && versions.v8;
|
|
6958
|
+
var match, version;
|
|
6959
|
+
|
|
6960
|
+
if (v8) {
|
|
6961
|
+
match = v8.split('.');
|
|
6962
|
+
// in old Chrome, versions of V8 isn't V8 = Chrome / 10
|
|
6963
|
+
// but their correct versions are not interesting for us
|
|
6964
|
+
version = match[0] > 0 && match[0] < 4 ? 1 : +(match[0] + match[1]);
|
|
6965
|
+
}
|
|
6966
|
+
|
|
6967
|
+
// BrowserFS NodeJS `process` polyfill incorrectly set `.v8` to `0.0`
|
|
6968
|
+
// so check `userAgent` even if `.v8` exists, but 0
|
|
6969
|
+
if (!version && userAgent) {
|
|
6970
|
+
match = userAgent.match(/Edge\/(\d+)/);
|
|
6971
|
+
if (!match || match[1] >= 74) {
|
|
6972
|
+
match = userAgent.match(/Chrome\/(\d+)/);
|
|
6973
|
+
if (match) version = +match[1];
|
|
6974
|
+
}
|
|
6975
|
+
}
|
|
6976
|
+
|
|
6977
|
+
module.exports = version;
|
|
6978
|
+
|
|
6979
|
+
|
|
6944
6980
|
/***/ }),
|
|
6945
6981
|
|
|
6946
6982
|
/***/ "1276":
|
|
@@ -7133,8 +7169,8 @@ Function.prototype.toString = makeBuiltIn(function toString() {
|
|
|
7133
7169
|
var $ = __webpack_require__("23e7");
|
|
7134
7170
|
var $reduce = __webpack_require__("d58f").left;
|
|
7135
7171
|
var arrayMethodIsStrict = __webpack_require__("a640");
|
|
7136
|
-
var CHROME_VERSION = __webpack_require__("
|
|
7137
|
-
var IS_NODE = __webpack_require__("
|
|
7172
|
+
var CHROME_VERSION = __webpack_require__("1212");
|
|
7173
|
+
var IS_NODE = __webpack_require__("9adc");
|
|
7138
7174
|
|
|
7139
7175
|
// Chrome 80-82 has a critical bug
|
|
7140
7176
|
// https://bugs.chromium.org/p/chromium/issues/detail?id=1049982
|
|
@@ -7234,7 +7270,7 @@ $({ target: 'Promise', stat: true, forced: PROMISE_STATICS_INCORRECT_ITERATION }
|
|
|
7234
7270
|
|
|
7235
7271
|
"use strict";
|
|
7236
7272
|
|
|
7237
|
-
var
|
|
7273
|
+
var globalThis = __webpack_require__("cfe9");
|
|
7238
7274
|
var DESCRIPTORS = __webpack_require__("83ab");
|
|
7239
7275
|
|
|
7240
7276
|
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
@@ -7242,8 +7278,8 @@ var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
|
7242
7278
|
|
|
7243
7279
|
// Avoid NodeJS experimental warning
|
|
7244
7280
|
module.exports = function (name) {
|
|
7245
|
-
if (!DESCRIPTORS) return
|
|
7246
|
-
var descriptor = getOwnPropertyDescriptor(
|
|
7281
|
+
if (!DESCRIPTORS) return globalThis[name];
|
|
7282
|
+
var descriptor = getOwnPropertyDescriptor(globalThis, name);
|
|
7247
7283
|
return descriptor && descriptor.value;
|
|
7248
7284
|
};
|
|
7249
7285
|
|
|
@@ -7380,19 +7416,6 @@ module.exports = function (exec, SKIP_CLOSING) {
|
|
|
7380
7416
|
};
|
|
7381
7417
|
|
|
7382
7418
|
|
|
7383
|
-
/***/ }),
|
|
7384
|
-
|
|
7385
|
-
/***/ "1cdc":
|
|
7386
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
7387
|
-
|
|
7388
|
-
"use strict";
|
|
7389
|
-
|
|
7390
|
-
var userAgent = __webpack_require__("342f");
|
|
7391
|
-
|
|
7392
|
-
// eslint-disable-next-line redos/no-vulnerable -- safe
|
|
7393
|
-
module.exports = /(?:ipad|iphone|ipod).*applewebkit/i.test(userAgent);
|
|
7394
|
-
|
|
7395
|
-
|
|
7396
7419
|
/***/ }),
|
|
7397
7420
|
|
|
7398
7421
|
/***/ "1d80":
|
|
@@ -7517,7 +7540,7 @@ module.exports = function (index, length) {
|
|
|
7517
7540
|
|
|
7518
7541
|
"use strict";
|
|
7519
7542
|
|
|
7520
|
-
var
|
|
7543
|
+
var globalThis = __webpack_require__("cfe9");
|
|
7521
7544
|
var getOwnPropertyDescriptor = __webpack_require__("06cf").f;
|
|
7522
7545
|
var createNonEnumerableProperty = __webpack_require__("9112");
|
|
7523
7546
|
var defineBuiltIn = __webpack_require__("cb2d");
|
|
@@ -7546,11 +7569,11 @@ module.exports = function (options, source) {
|
|
|
7546
7569
|
var STATIC = options.stat;
|
|
7547
7570
|
var FORCED, target, key, targetProperty, sourceProperty, descriptor;
|
|
7548
7571
|
if (GLOBAL) {
|
|
7549
|
-
target =
|
|
7572
|
+
target = globalThis;
|
|
7550
7573
|
} else if (STATIC) {
|
|
7551
|
-
target =
|
|
7574
|
+
target = globalThis[TARGET] || defineGlobalProperty(TARGET, {});
|
|
7552
7575
|
} else {
|
|
7553
|
-
target =
|
|
7576
|
+
target = globalThis[TARGET] && globalThis[TARGET].prototype;
|
|
7554
7577
|
}
|
|
7555
7578
|
if (target) for (key in source) {
|
|
7556
7579
|
sourceProperty = source[key];
|
|
@@ -7807,7 +7830,7 @@ $({ target: 'String', proto: true, forced: !MDN_POLYFILL_BUG && !CORRECT_IS_REGE
|
|
|
7807
7830
|
|
|
7808
7831
|
"use strict";
|
|
7809
7832
|
|
|
7810
|
-
var
|
|
7833
|
+
var globalThis = __webpack_require__("cfe9");
|
|
7811
7834
|
var apply = __webpack_require__("2ba4");
|
|
7812
7835
|
var bind = __webpack_require__("0366");
|
|
7813
7836
|
var isCallable = __webpack_require__("1626");
|
|
@@ -7817,16 +7840,16 @@ var html = __webpack_require__("1be4");
|
|
|
7817
7840
|
var arraySlice = __webpack_require__("f36a");
|
|
7818
7841
|
var createElement = __webpack_require__("cc12");
|
|
7819
7842
|
var validateArgumentsLength = __webpack_require__("d6d6");
|
|
7820
|
-
var IS_IOS = __webpack_require__("
|
|
7821
|
-
var IS_NODE = __webpack_require__("
|
|
7822
|
-
|
|
7823
|
-
var set =
|
|
7824
|
-
var clear =
|
|
7825
|
-
var process =
|
|
7826
|
-
var Dispatch =
|
|
7827
|
-
var Function =
|
|
7828
|
-
var MessageChannel =
|
|
7829
|
-
var String =
|
|
7843
|
+
var IS_IOS = __webpack_require__("52c8");
|
|
7844
|
+
var IS_NODE = __webpack_require__("9adc");
|
|
7845
|
+
|
|
7846
|
+
var set = globalThis.setImmediate;
|
|
7847
|
+
var clear = globalThis.clearImmediate;
|
|
7848
|
+
var process = globalThis.process;
|
|
7849
|
+
var Dispatch = globalThis.Dispatch;
|
|
7850
|
+
var Function = globalThis.Function;
|
|
7851
|
+
var MessageChannel = globalThis.MessageChannel;
|
|
7852
|
+
var String = globalThis.String;
|
|
7830
7853
|
var counter = 0;
|
|
7831
7854
|
var queue = {};
|
|
7832
7855
|
var ONREADYSTATECHANGE = 'onreadystatechange';
|
|
@@ -7834,7 +7857,7 @@ var $location, defer, channel, port;
|
|
|
7834
7857
|
|
|
7835
7858
|
fails(function () {
|
|
7836
7859
|
// Deno throws a ReferenceError on `location` access without `--location` flag
|
|
7837
|
-
$location =
|
|
7860
|
+
$location = globalThis.location;
|
|
7838
7861
|
});
|
|
7839
7862
|
|
|
7840
7863
|
var run = function (id) {
|
|
@@ -7857,7 +7880,7 @@ var eventListener = function (event) {
|
|
|
7857
7880
|
|
|
7858
7881
|
var globalPostMessageDefer = function (id) {
|
|
7859
7882
|
// old engines have not location.origin
|
|
7860
|
-
|
|
7883
|
+
globalThis.postMessage(String(id), $location.protocol + '//' + $location.host);
|
|
7861
7884
|
};
|
|
7862
7885
|
|
|
7863
7886
|
// Node.js 0.9+ & IE10+ has setImmediate, otherwise:
|
|
@@ -7895,14 +7918,14 @@ if (!set || !clear) {
|
|
|
7895
7918
|
// Browsers with postMessage, skip WebWorkers
|
|
7896
7919
|
// IE8 has postMessage, but it's sync & typeof its postMessage is 'object'
|
|
7897
7920
|
} else if (
|
|
7898
|
-
|
|
7899
|
-
isCallable(
|
|
7900
|
-
!
|
|
7921
|
+
globalThis.addEventListener &&
|
|
7922
|
+
isCallable(globalThis.postMessage) &&
|
|
7923
|
+
!globalThis.importScripts &&
|
|
7901
7924
|
$location && $location.protocol !== 'file:' &&
|
|
7902
7925
|
!fails(globalPostMessageDefer)
|
|
7903
7926
|
) {
|
|
7904
7927
|
defer = globalPostMessageDefer;
|
|
7905
|
-
|
|
7928
|
+
globalThis.addEventListener('message', eventListener, false);
|
|
7906
7929
|
// IE8-
|
|
7907
7930
|
} else if (ONREADYSTATECHANGE in createElement('script')) {
|
|
7908
7931
|
defer = function (id) {
|
|
@@ -7925,52 +7948,6 @@ module.exports = {
|
|
|
7925
7948
|
};
|
|
7926
7949
|
|
|
7927
7950
|
|
|
7928
|
-
/***/ }),
|
|
7929
|
-
|
|
7930
|
-
/***/ "2d00":
|
|
7931
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
7932
|
-
|
|
7933
|
-
"use strict";
|
|
7934
|
-
|
|
7935
|
-
var global = __webpack_require__("da84");
|
|
7936
|
-
var userAgent = __webpack_require__("342f");
|
|
7937
|
-
|
|
7938
|
-
var process = global.process;
|
|
7939
|
-
var Deno = global.Deno;
|
|
7940
|
-
var versions = process && process.versions || Deno && Deno.version;
|
|
7941
|
-
var v8 = versions && versions.v8;
|
|
7942
|
-
var match, version;
|
|
7943
|
-
|
|
7944
|
-
if (v8) {
|
|
7945
|
-
match = v8.split('.');
|
|
7946
|
-
// in old Chrome, versions of V8 isn't V8 = Chrome / 10
|
|
7947
|
-
// but their correct versions are not interesting for us
|
|
7948
|
-
version = match[0] > 0 && match[0] < 4 ? 1 : +(match[0] + match[1]);
|
|
7949
|
-
}
|
|
7950
|
-
|
|
7951
|
-
// BrowserFS NodeJS `process` polyfill incorrectly set `.v8` to `0.0`
|
|
7952
|
-
// so check `userAgent` even if `.v8` exists, but 0
|
|
7953
|
-
if (!version && userAgent) {
|
|
7954
|
-
match = userAgent.match(/Edge\/(\d+)/);
|
|
7955
|
-
if (!match || match[1] >= 74) {
|
|
7956
|
-
match = userAgent.match(/Chrome\/(\d+)/);
|
|
7957
|
-
if (match) version = +match[1];
|
|
7958
|
-
}
|
|
7959
|
-
}
|
|
7960
|
-
|
|
7961
|
-
module.exports = version;
|
|
7962
|
-
|
|
7963
|
-
|
|
7964
|
-
/***/ }),
|
|
7965
|
-
|
|
7966
|
-
/***/ "342f":
|
|
7967
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
7968
|
-
|
|
7969
|
-
"use strict";
|
|
7970
|
-
|
|
7971
|
-
module.exports = typeof navigator != 'undefined' && String(navigator.userAgent) || '';
|
|
7972
|
-
|
|
7973
|
-
|
|
7974
7951
|
/***/ }),
|
|
7975
7952
|
|
|
7976
7953
|
/***/ "3529":
|
|
@@ -8283,21 +8260,20 @@ fixRegExpWellKnownSymbolLogic('match', function (MATCH, nativeMatch, maybeCallNa
|
|
|
8283
8260
|
|
|
8284
8261
|
"use strict";
|
|
8285
8262
|
|
|
8286
|
-
var
|
|
8263
|
+
var globalThis = __webpack_require__("cfe9");
|
|
8287
8264
|
var NativePromiseConstructor = __webpack_require__("d256");
|
|
8288
8265
|
var isCallable = __webpack_require__("1626");
|
|
8289
8266
|
var isForced = __webpack_require__("94ca");
|
|
8290
8267
|
var inspectSource = __webpack_require__("8925");
|
|
8291
8268
|
var wellKnownSymbol = __webpack_require__("b622");
|
|
8292
|
-
var
|
|
8293
|
-
var IS_DENO = __webpack_require__("6c59");
|
|
8269
|
+
var ENVIRONMENT = __webpack_require__("8558");
|
|
8294
8270
|
var IS_PURE = __webpack_require__("c430");
|
|
8295
|
-
var V8_VERSION = __webpack_require__("
|
|
8271
|
+
var V8_VERSION = __webpack_require__("1212");
|
|
8296
8272
|
|
|
8297
8273
|
var NativePromisePrototype = NativePromiseConstructor && NativePromiseConstructor.prototype;
|
|
8298
8274
|
var SPECIES = wellKnownSymbol('species');
|
|
8299
8275
|
var SUBCLASSING = false;
|
|
8300
|
-
var NATIVE_PROMISE_REJECTION_EVENT = isCallable(
|
|
8276
|
+
var NATIVE_PROMISE_REJECTION_EVENT = isCallable(globalThis.PromiseRejectionEvent);
|
|
8301
8277
|
|
|
8302
8278
|
var FORCED_PROMISE_CONSTRUCTOR = isForced('Promise', function () {
|
|
8303
8279
|
var PROMISE_CONSTRUCTOR_SOURCE = inspectSource(NativePromiseConstructor);
|
|
@@ -8322,7 +8298,7 @@ var FORCED_PROMISE_CONSTRUCTOR = isForced('Promise', function () {
|
|
|
8322
8298
|
SUBCLASSING = promise.then(function () { /* empty */ }) instanceof FakePromise;
|
|
8323
8299
|
if (!SUBCLASSING) return true;
|
|
8324
8300
|
// Unhandled rejections tracking support, NodeJS Promise without it fails @@species test
|
|
8325
|
-
} return !GLOBAL_CORE_JS_PROMISE && (
|
|
8301
|
+
} return !GLOBAL_CORE_JS_PROMISE && (ENVIRONMENT === 'BROWSER' || ENVIRONMENT === 'DENO') && !NATIVE_PROMISE_REJECTION_EVENT;
|
|
8326
8302
|
});
|
|
8327
8303
|
|
|
8328
8304
|
module.exports = {
|
|
@@ -8493,6 +8469,19 @@ module.exports = function (argument) {
|
|
|
8493
8469
|
};
|
|
8494
8470
|
|
|
8495
8471
|
|
|
8472
|
+
/***/ }),
|
|
8473
|
+
|
|
8474
|
+
/***/ "52c8":
|
|
8475
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
8476
|
+
|
|
8477
|
+
"use strict";
|
|
8478
|
+
|
|
8479
|
+
var userAgent = __webpack_require__("b5db");
|
|
8480
|
+
|
|
8481
|
+
// eslint-disable-next-line redos/no-vulnerable -- safe
|
|
8482
|
+
module.exports = /(?:ipad|iphone|ipod).*applewebkit/i.test(userAgent);
|
|
8483
|
+
|
|
8484
|
+
|
|
8496
8485
|
/***/ }),
|
|
8497
8486
|
|
|
8498
8487
|
/***/ "5319":
|
|
@@ -9164,8 +9153,8 @@ module.exports = {
|
|
|
9164
9153
|
|
|
9165
9154
|
var $ = __webpack_require__("23e7");
|
|
9166
9155
|
var IS_PURE = __webpack_require__("c430");
|
|
9167
|
-
var IS_NODE = __webpack_require__("
|
|
9168
|
-
var
|
|
9156
|
+
var IS_NODE = __webpack_require__("9adc");
|
|
9157
|
+
var globalThis = __webpack_require__("cfe9");
|
|
9169
9158
|
var call = __webpack_require__("c65b");
|
|
9170
9159
|
var defineBuiltIn = __webpack_require__("cb2d");
|
|
9171
9160
|
var setPrototypeOf = __webpack_require__("d2bb");
|
|
@@ -9195,13 +9184,13 @@ var setInternalState = InternalStateModule.set;
|
|
|
9195
9184
|
var NativePromisePrototype = NativePromiseConstructor && NativePromiseConstructor.prototype;
|
|
9196
9185
|
var PromiseConstructor = NativePromiseConstructor;
|
|
9197
9186
|
var PromisePrototype = NativePromisePrototype;
|
|
9198
|
-
var TypeError =
|
|
9199
|
-
var document =
|
|
9200
|
-
var process =
|
|
9187
|
+
var TypeError = globalThis.TypeError;
|
|
9188
|
+
var document = globalThis.document;
|
|
9189
|
+
var process = globalThis.process;
|
|
9201
9190
|
var newPromiseCapability = newPromiseCapabilityModule.f;
|
|
9202
9191
|
var newGenericPromiseCapability = newPromiseCapability;
|
|
9203
9192
|
|
|
9204
|
-
var DISPATCH_EVENT = !!(document && document.createEvent &&
|
|
9193
|
+
var DISPATCH_EVENT = !!(document && document.createEvent && globalThis.dispatchEvent);
|
|
9205
9194
|
var UNHANDLED_REJECTION = 'unhandledrejection';
|
|
9206
9195
|
var REJECTION_HANDLED = 'rejectionhandled';
|
|
9207
9196
|
var PENDING = 0;
|
|
@@ -9274,14 +9263,14 @@ var dispatchEvent = function (name, promise, reason) {
|
|
|
9274
9263
|
event.promise = promise;
|
|
9275
9264
|
event.reason = reason;
|
|
9276
9265
|
event.initEvent(name, false, true);
|
|
9277
|
-
|
|
9266
|
+
globalThis.dispatchEvent(event);
|
|
9278
9267
|
} else event = { promise: promise, reason: reason };
|
|
9279
|
-
if (!NATIVE_PROMISE_REJECTION_EVENT && (handler =
|
|
9268
|
+
if (!NATIVE_PROMISE_REJECTION_EVENT && (handler = globalThis['on' + name])) handler(event);
|
|
9280
9269
|
else if (name === UNHANDLED_REJECTION) hostReportErrors('Unhandled promise rejection', reason);
|
|
9281
9270
|
};
|
|
9282
9271
|
|
|
9283
9272
|
var onUnhandled = function (state) {
|
|
9284
|
-
call(task,
|
|
9273
|
+
call(task, globalThis, function () {
|
|
9285
9274
|
var promise = state.facade;
|
|
9286
9275
|
var value = state.value;
|
|
9287
9276
|
var IS_UNHANDLED = isUnhandled(state);
|
|
@@ -9304,7 +9293,7 @@ var isUnhandled = function (state) {
|
|
|
9304
9293
|
};
|
|
9305
9294
|
|
|
9306
9295
|
var onHandleUnhandled = function (state) {
|
|
9307
|
-
call(task,
|
|
9296
|
+
call(task, globalThis, function () {
|
|
9308
9297
|
var promise = state.facade;
|
|
9309
9298
|
if (IS_NODE) {
|
|
9310
9299
|
process.emit('rejectionHandled', promise);
|
|
@@ -9383,7 +9372,7 @@ if (FORCED_PROMISE_CONSTRUCTOR) {
|
|
|
9383
9372
|
reactions: new Queue(),
|
|
9384
9373
|
rejection: false,
|
|
9385
9374
|
state: PENDING,
|
|
9386
|
-
value:
|
|
9375
|
+
value: null
|
|
9387
9376
|
});
|
|
9388
9377
|
};
|
|
9389
9378
|
|
|
@@ -9443,6 +9432,8 @@ if (FORCED_PROMISE_CONSTRUCTOR) {
|
|
|
9443
9432
|
}
|
|
9444
9433
|
}
|
|
9445
9434
|
|
|
9435
|
+
// `Promise` constructor
|
|
9436
|
+
// https://tc39.es/ecma262/#sec-promise-executor
|
|
9446
9437
|
$({ global: true, constructor: true, wrap: true, forced: FORCED_PROMISE_CONSTRUCTOR }, {
|
|
9447
9438
|
Promise: PromiseConstructor
|
|
9448
9439
|
});
|
|
@@ -10120,34 +10111,6 @@ module.exports = FORCED_PROMISE_CONSTRUCTOR || !checkCorrectnessOfIteration(func
|
|
|
10120
10111
|
});
|
|
10121
10112
|
|
|
10122
10113
|
|
|
10123
|
-
/***/ }),
|
|
10124
|
-
|
|
10125
|
-
/***/ "605d":
|
|
10126
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
10127
|
-
|
|
10128
|
-
"use strict";
|
|
10129
|
-
|
|
10130
|
-
var global = __webpack_require__("da84");
|
|
10131
|
-
var classof = __webpack_require__("c6b6");
|
|
10132
|
-
|
|
10133
|
-
module.exports = classof(global.process) === 'process';
|
|
10134
|
-
|
|
10135
|
-
|
|
10136
|
-
/***/ }),
|
|
10137
|
-
|
|
10138
|
-
/***/ "6069":
|
|
10139
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
10140
|
-
|
|
10141
|
-
"use strict";
|
|
10142
|
-
|
|
10143
|
-
var IS_DENO = __webpack_require__("6c59");
|
|
10144
|
-
var IS_NODE = __webpack_require__("605d");
|
|
10145
|
-
|
|
10146
|
-
module.exports = !IS_DENO && !IS_NODE
|
|
10147
|
-
&& typeof window == 'object'
|
|
10148
|
-
&& typeof document == 'object';
|
|
10149
|
-
|
|
10150
|
-
|
|
10151
10114
|
/***/ }),
|
|
10152
10115
|
|
|
10153
10116
|
/***/ "6374":
|
|
@@ -10155,16 +10118,16 @@ module.exports = !IS_DENO && !IS_NODE
|
|
|
10155
10118
|
|
|
10156
10119
|
"use strict";
|
|
10157
10120
|
|
|
10158
|
-
var
|
|
10121
|
+
var globalThis = __webpack_require__("cfe9");
|
|
10159
10122
|
|
|
10160
10123
|
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
10161
10124
|
var defineProperty = Object.defineProperty;
|
|
10162
10125
|
|
|
10163
10126
|
module.exports = function (key, value) {
|
|
10164
10127
|
try {
|
|
10165
|
-
defineProperty(
|
|
10128
|
+
defineProperty(globalThis, key, { value: value, configurable: true, writable: true });
|
|
10166
10129
|
} catch (error) {
|
|
10167
|
-
|
|
10130
|
+
globalThis[key] = value;
|
|
10168
10131
|
} return value;
|
|
10169
10132
|
};
|
|
10170
10133
|
|
|
@@ -10282,7 +10245,7 @@ module.exports = !construct || fails(function () {
|
|
|
10282
10245
|
"use strict";
|
|
10283
10246
|
|
|
10284
10247
|
var NATIVE_WEAK_MAP = __webpack_require__("cdce");
|
|
10285
|
-
var
|
|
10248
|
+
var globalThis = __webpack_require__("cfe9");
|
|
10286
10249
|
var isObject = __webpack_require__("861d");
|
|
10287
10250
|
var createNonEnumerableProperty = __webpack_require__("9112");
|
|
10288
10251
|
var hasOwn = __webpack_require__("1a2db");
|
|
@@ -10291,8 +10254,8 @@ var sharedKey = __webpack_require__("f772");
|
|
|
10291
10254
|
var hiddenKeys = __webpack_require__("d012");
|
|
10292
10255
|
|
|
10293
10256
|
var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
|
|
10294
|
-
var TypeError =
|
|
10295
|
-
var WeakMap =
|
|
10257
|
+
var TypeError = globalThis.TypeError;
|
|
10258
|
+
var WeakMap = globalThis.WeakMap;
|
|
10296
10259
|
var set, get, has;
|
|
10297
10260
|
|
|
10298
10261
|
var enforce = function (it) {
|
|
@@ -10353,17 +10316,6 @@ module.exports = {
|
|
|
10353
10316
|
};
|
|
10354
10317
|
|
|
10355
10318
|
|
|
10356
|
-
/***/ }),
|
|
10357
|
-
|
|
10358
|
-
/***/ "6c59":
|
|
10359
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
10360
|
-
|
|
10361
|
-
"use strict";
|
|
10362
|
-
|
|
10363
|
-
/* global Deno -- Deno case */
|
|
10364
|
-
module.exports = typeof Deno == 'object' && Deno && typeof Deno.version == 'object';
|
|
10365
|
-
|
|
10366
|
-
|
|
10367
10319
|
/***/ }),
|
|
10368
10320
|
|
|
10369
10321
|
/***/ "6d08":
|
|
@@ -10563,7 +10515,8 @@ var NullProtoObjectViaActiveX = function (activeXDocument) {
|
|
|
10563
10515
|
activeXDocument.write(scriptTag(''));
|
|
10564
10516
|
activeXDocument.close();
|
|
10565
10517
|
var temp = activeXDocument.parentWindow.Object;
|
|
10566
|
-
|
|
10518
|
+
// eslint-disable-next-line no-useless-assignment -- avoid memory leak
|
|
10519
|
+
activeXDocument = null;
|
|
10567
10520
|
return temp;
|
|
10568
10521
|
};
|
|
10569
10522
|
|
|
@@ -10657,6 +10610,35 @@ module.exports = !fails(function () {
|
|
|
10657
10610
|
});
|
|
10658
10611
|
|
|
10659
10612
|
|
|
10613
|
+
/***/ }),
|
|
10614
|
+
|
|
10615
|
+
/***/ "8558":
|
|
10616
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
10617
|
+
|
|
10618
|
+
"use strict";
|
|
10619
|
+
|
|
10620
|
+
/* global Bun, Deno -- detection */
|
|
10621
|
+
var globalThis = __webpack_require__("cfe9");
|
|
10622
|
+
var userAgent = __webpack_require__("b5db");
|
|
10623
|
+
var classof = __webpack_require__("c6b6");
|
|
10624
|
+
|
|
10625
|
+
var userAgentStartsWith = function (string) {
|
|
10626
|
+
return userAgent.slice(0, string.length) === string;
|
|
10627
|
+
};
|
|
10628
|
+
|
|
10629
|
+
module.exports = (function () {
|
|
10630
|
+
if (userAgentStartsWith('Bun/')) return 'BUN';
|
|
10631
|
+
if (userAgentStartsWith('Cloudflare-Workers')) return 'CLOUDFLARE';
|
|
10632
|
+
if (userAgentStartsWith('Deno/')) return 'DENO';
|
|
10633
|
+
if (userAgentStartsWith('Node.js/')) return 'NODE';
|
|
10634
|
+
if (globalThis.Bun && typeof Bun.version == 'string') return 'BUN';
|
|
10635
|
+
if (globalThis.Deno && typeof Deno.version == 'object') return 'DENO';
|
|
10636
|
+
if (classof(globalThis.process) === 'process') return 'NODE';
|
|
10637
|
+
if (globalThis.window && globalThis.document) return 'BROWSER';
|
|
10638
|
+
return 'REST';
|
|
10639
|
+
})();
|
|
10640
|
+
|
|
10641
|
+
|
|
10660
10642
|
/***/ }),
|
|
10661
10643
|
|
|
10662
10644
|
/***/ "861d":
|
|
@@ -11004,6 +10986,18 @@ module.exports = function (argument, usingIterator) {
|
|
|
11004
10986
|
};
|
|
11005
10987
|
|
|
11006
10988
|
|
|
10989
|
+
/***/ }),
|
|
10990
|
+
|
|
10991
|
+
/***/ "9adc":
|
|
10992
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
10993
|
+
|
|
10994
|
+
"use strict";
|
|
10995
|
+
|
|
10996
|
+
var ENVIRONMENT = __webpack_require__("8558");
|
|
10997
|
+
|
|
10998
|
+
module.exports = ENVIRONMENT === 'NODE';
|
|
10999
|
+
|
|
11000
|
+
|
|
11007
11001
|
/***/ }),
|
|
11008
11002
|
|
|
11009
11003
|
/***/ "9bf2":
|
|
@@ -11064,10 +11058,10 @@ exports.f = DESCRIPTORS ? V8_PROTOTYPE_DEFINE_BUG ? function defineProperty(O, P
|
|
|
11064
11058
|
"use strict";
|
|
11065
11059
|
|
|
11066
11060
|
var fails = __webpack_require__("d039");
|
|
11067
|
-
var
|
|
11061
|
+
var globalThis = __webpack_require__("cfe9");
|
|
11068
11062
|
|
|
11069
11063
|
// babel-minify and Closure Compiler transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError
|
|
11070
|
-
var $RegExp =
|
|
11064
|
+
var $RegExp = globalThis.RegExp;
|
|
11071
11065
|
|
|
11072
11066
|
var UNSUPPORTED_Y = fails(function () {
|
|
11073
11067
|
var re = $RegExp('a', 'y');
|
|
@@ -11126,18 +11120,6 @@ function toPropertyKey(t) {
|
|
|
11126
11120
|
}
|
|
11127
11121
|
module.exports = toPropertyKey, module.exports.__esModule = true, module.exports["default"] = module.exports;
|
|
11128
11122
|
|
|
11129
|
-
/***/ }),
|
|
11130
|
-
|
|
11131
|
-
/***/ "a4b4":
|
|
11132
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
11133
|
-
|
|
11134
|
-
"use strict";
|
|
11135
|
-
|
|
11136
|
-
var userAgent = __webpack_require__("342f");
|
|
11137
|
-
|
|
11138
|
-
module.exports = /web0s(?!.*chrome)/i.test(userAgent);
|
|
11139
|
-
|
|
11140
|
-
|
|
11141
11123
|
/***/ }),
|
|
11142
11124
|
|
|
11143
11125
|
/***/ "a640":
|
|
@@ -11327,20 +11309,20 @@ module.exports = Math.trunc || function trunc(x) {
|
|
|
11327
11309
|
|
|
11328
11310
|
"use strict";
|
|
11329
11311
|
|
|
11330
|
-
var
|
|
11312
|
+
var globalThis = __webpack_require__("cfe9");
|
|
11331
11313
|
var safeGetBuiltIn = __webpack_require__("157a");
|
|
11332
11314
|
var bind = __webpack_require__("0366");
|
|
11333
11315
|
var macrotask = __webpack_require__("2cf4").set;
|
|
11334
11316
|
var Queue = __webpack_require__("01b4");
|
|
11335
|
-
var IS_IOS = __webpack_require__("
|
|
11336
|
-
var IS_IOS_PEBBLE = __webpack_require__("
|
|
11337
|
-
var IS_WEBOS_WEBKIT = __webpack_require__("
|
|
11338
|
-
var IS_NODE = __webpack_require__("
|
|
11339
|
-
|
|
11340
|
-
var MutationObserver =
|
|
11341
|
-
var document =
|
|
11342
|
-
var process =
|
|
11343
|
-
var Promise =
|
|
11317
|
+
var IS_IOS = __webpack_require__("52c8");
|
|
11318
|
+
var IS_IOS_PEBBLE = __webpack_require__("ebc1");
|
|
11319
|
+
var IS_WEBOS_WEBKIT = __webpack_require__("ec87");
|
|
11320
|
+
var IS_NODE = __webpack_require__("9adc");
|
|
11321
|
+
|
|
11322
|
+
var MutationObserver = globalThis.MutationObserver || globalThis.WebKitMutationObserver;
|
|
11323
|
+
var document = globalThis.document;
|
|
11324
|
+
var process = globalThis.process;
|
|
11325
|
+
var Promise = globalThis.Promise;
|
|
11344
11326
|
var microtask = safeGetBuiltIn('queueMicrotask');
|
|
11345
11327
|
var notify, toggle, node, promise, then;
|
|
11346
11328
|
|
|
@@ -11392,7 +11374,7 @@ if (!microtask) {
|
|
|
11392
11374
|
// - setTimeout
|
|
11393
11375
|
} else {
|
|
11394
11376
|
// `webpack` dev server bug on IE global methods - use bind(fn, global)
|
|
11395
|
-
macrotask = bind(macrotask,
|
|
11377
|
+
macrotask = bind(macrotask, globalThis);
|
|
11396
11378
|
notify = function () {
|
|
11397
11379
|
macrotask(flush);
|
|
11398
11380
|
};
|
|
@@ -11407,6 +11389,21 @@ if (!microtask) {
|
|
|
11407
11389
|
module.exports = microtask;
|
|
11408
11390
|
|
|
11409
11391
|
|
|
11392
|
+
/***/ }),
|
|
11393
|
+
|
|
11394
|
+
/***/ "b5db":
|
|
11395
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
11396
|
+
|
|
11397
|
+
"use strict";
|
|
11398
|
+
|
|
11399
|
+
var globalThis = __webpack_require__("cfe9");
|
|
11400
|
+
|
|
11401
|
+
var navigator = globalThis.navigator;
|
|
11402
|
+
var userAgent = navigator && navigator.userAgent;
|
|
11403
|
+
|
|
11404
|
+
module.exports = userAgent ? String(userAgent) : '';
|
|
11405
|
+
|
|
11406
|
+
|
|
11410
11407
|
/***/ }),
|
|
11411
11408
|
|
|
11412
11409
|
/***/ "b622":
|
|
@@ -11414,14 +11411,14 @@ module.exports = microtask;
|
|
|
11414
11411
|
|
|
11415
11412
|
"use strict";
|
|
11416
11413
|
|
|
11417
|
-
var
|
|
11414
|
+
var globalThis = __webpack_require__("cfe9");
|
|
11418
11415
|
var shared = __webpack_require__("5692");
|
|
11419
11416
|
var hasOwn = __webpack_require__("1a2db");
|
|
11420
11417
|
var uid = __webpack_require__("90e3");
|
|
11421
11418
|
var NATIVE_SYMBOL = __webpack_require__("04f8");
|
|
11422
11419
|
var USE_SYMBOL_AS_UID = __webpack_require__("fdbf");
|
|
11423
11420
|
|
|
11424
|
-
var Symbol =
|
|
11421
|
+
var Symbol = globalThis.Symbol;
|
|
11425
11422
|
var WellKnownSymbolsStore = shared('wks');
|
|
11426
11423
|
var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol['for'] || Symbol : Symbol && Symbol.withoutSetter || uid;
|
|
11427
11424
|
|
|
@@ -11602,17 +11599,17 @@ module.exports = function (it) {
|
|
|
11602
11599
|
"use strict";
|
|
11603
11600
|
|
|
11604
11601
|
var IS_PURE = __webpack_require__("c430");
|
|
11605
|
-
var globalThis = __webpack_require__("
|
|
11602
|
+
var globalThis = __webpack_require__("cfe9");
|
|
11606
11603
|
var defineGlobalProperty = __webpack_require__("6374");
|
|
11607
11604
|
|
|
11608
11605
|
var SHARED = '__core-js_shared__';
|
|
11609
11606
|
var store = module.exports = globalThis[SHARED] || defineGlobalProperty(SHARED, {});
|
|
11610
11607
|
|
|
11611
11608
|
(store.versions || (store.versions = [])).push({
|
|
11612
|
-
version: '3.
|
|
11609
|
+
version: '3.39.0',
|
|
11613
11610
|
mode: IS_PURE ? 'pure' : 'global',
|
|
11614
11611
|
copyright: '© 2014-2024 Denis Pushkarev (zloirock.ru)',
|
|
11615
|
-
license: 'https://github.com/zloirock/core-js/blob/v3.
|
|
11612
|
+
license: 'https://github.com/zloirock/core-js/blob/v3.39.0/LICENSE',
|
|
11616
11613
|
source: 'https://github.com/zloirock/core-js'
|
|
11617
11614
|
});
|
|
11618
11615
|
|
|
@@ -11886,10 +11883,10 @@ module.exports = function (O, key, value, options) {
|
|
|
11886
11883
|
|
|
11887
11884
|
"use strict";
|
|
11888
11885
|
|
|
11889
|
-
var
|
|
11886
|
+
var globalThis = __webpack_require__("cfe9");
|
|
11890
11887
|
var isObject = __webpack_require__("861d");
|
|
11891
11888
|
|
|
11892
|
-
var document =
|
|
11889
|
+
var document = globalThis.document;
|
|
11893
11890
|
// typeof document.createElement is 'object' in old IE
|
|
11894
11891
|
var EXISTS = isObject(document) && isObject(document.createElement);
|
|
11895
11892
|
|
|
@@ -11939,10 +11936,10 @@ if (!IS_PURE && isCallable(NativePromiseConstructor)) {
|
|
|
11939
11936
|
|
|
11940
11937
|
"use strict";
|
|
11941
11938
|
|
|
11942
|
-
var
|
|
11939
|
+
var globalThis = __webpack_require__("cfe9");
|
|
11943
11940
|
var isCallable = __webpack_require__("1626");
|
|
11944
11941
|
|
|
11945
|
-
var WeakMap =
|
|
11942
|
+
var WeakMap = globalThis.WeakMap;
|
|
11946
11943
|
|
|
11947
11944
|
module.exports = isCallable(WeakMap) && /native code/.test(String(WeakMap));
|
|
11948
11945
|
|
|
@@ -11968,6 +11965,31 @@ module.exports = function (C, x) {
|
|
|
11968
11965
|
};
|
|
11969
11966
|
|
|
11970
11967
|
|
|
11968
|
+
/***/ }),
|
|
11969
|
+
|
|
11970
|
+
/***/ "cfe9":
|
|
11971
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
11972
|
+
|
|
11973
|
+
"use strict";
|
|
11974
|
+
/* WEBPACK VAR INJECTION */(function(global) {
|
|
11975
|
+
var check = function (it) {
|
|
11976
|
+
return it && it.Math === Math && it;
|
|
11977
|
+
};
|
|
11978
|
+
|
|
11979
|
+
// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
|
|
11980
|
+
module.exports =
|
|
11981
|
+
// eslint-disable-next-line es/no-global-this -- safe
|
|
11982
|
+
check(typeof globalThis == 'object' && globalThis) ||
|
|
11983
|
+
check(typeof window == 'object' && window) ||
|
|
11984
|
+
// eslint-disable-next-line no-restricted-globals -- safe
|
|
11985
|
+
check(typeof self == 'object' && self) ||
|
|
11986
|
+
check(typeof global == 'object' && global) ||
|
|
11987
|
+
check(typeof this == 'object' && this) ||
|
|
11988
|
+
// eslint-disable-next-line no-new-func -- fallback
|
|
11989
|
+
(function () { return this; })() || Function('return this')();
|
|
11990
|
+
|
|
11991
|
+
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__("c8ba")))
|
|
11992
|
+
|
|
11971
11993
|
/***/ }),
|
|
11972
11994
|
|
|
11973
11995
|
/***/ "d012":
|
|
@@ -12030,7 +12052,7 @@ module.exports = function (exec) {
|
|
|
12030
12052
|
|
|
12031
12053
|
"use strict";
|
|
12032
12054
|
|
|
12033
|
-
var
|
|
12055
|
+
var globalThis = __webpack_require__("cfe9");
|
|
12034
12056
|
var isCallable = __webpack_require__("1626");
|
|
12035
12057
|
|
|
12036
12058
|
var aFunction = function (argument) {
|
|
@@ -12038,7 +12060,7 @@ var aFunction = function (argument) {
|
|
|
12038
12060
|
};
|
|
12039
12061
|
|
|
12040
12062
|
module.exports = function (namespace, method) {
|
|
12041
|
-
return arguments.length < 2 ? aFunction(
|
|
12063
|
+
return arguments.length < 2 ? aFunction(globalThis[namespace]) : globalThis[namespace] && globalThis[namespace][method];
|
|
12042
12064
|
};
|
|
12043
12065
|
|
|
12044
12066
|
|
|
@@ -12071,9 +12093,9 @@ exports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
|
|
|
12071
12093
|
|
|
12072
12094
|
"use strict";
|
|
12073
12095
|
|
|
12074
|
-
var
|
|
12096
|
+
var globalThis = __webpack_require__("cfe9");
|
|
12075
12097
|
|
|
12076
|
-
module.exports =
|
|
12098
|
+
module.exports = globalThis.Promise;
|
|
12077
12099
|
|
|
12078
12100
|
|
|
12079
12101
|
/***/ }),
|
|
@@ -12134,18 +12156,6 @@ module.exports = function (target, TAG, STATIC) {
|
|
|
12134
12156
|
};
|
|
12135
12157
|
|
|
12136
12158
|
|
|
12137
|
-
/***/ }),
|
|
12138
|
-
|
|
12139
|
-
/***/ "d4c36":
|
|
12140
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
12141
|
-
|
|
12142
|
-
"use strict";
|
|
12143
|
-
|
|
12144
|
-
var userAgent = __webpack_require__("342f");
|
|
12145
|
-
|
|
12146
|
-
module.exports = /ipad|iphone|ipod/i.test(userAgent) && typeof Pebble != 'undefined';
|
|
12147
|
-
|
|
12148
|
-
|
|
12149
12159
|
/***/ }),
|
|
12150
12160
|
|
|
12151
12161
|
/***/ "d58f":
|
|
@@ -12321,31 +12331,6 @@ module.exports = USE_SYMBOL_AS_UID ? function (it) {
|
|
|
12321
12331
|
};
|
|
12322
12332
|
|
|
12323
12333
|
|
|
12324
|
-
/***/ }),
|
|
12325
|
-
|
|
12326
|
-
/***/ "da84":
|
|
12327
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
12328
|
-
|
|
12329
|
-
"use strict";
|
|
12330
|
-
/* WEBPACK VAR INJECTION */(function(global) {
|
|
12331
|
-
var check = function (it) {
|
|
12332
|
-
return it && it.Math === Math && it;
|
|
12333
|
-
};
|
|
12334
|
-
|
|
12335
|
-
// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
|
|
12336
|
-
module.exports =
|
|
12337
|
-
// eslint-disable-next-line es/no-global-this -- safe
|
|
12338
|
-
check(typeof globalThis == 'object' && globalThis) ||
|
|
12339
|
-
check(typeof window == 'object' && window) ||
|
|
12340
|
-
// eslint-disable-next-line no-restricted-globals -- safe
|
|
12341
|
-
check(typeof self == 'object' && self) ||
|
|
12342
|
-
check(typeof global == 'object' && global) ||
|
|
12343
|
-
check(typeof this == 'object' && this) ||
|
|
12344
|
-
// eslint-disable-next-line no-new-func -- fallback
|
|
12345
|
-
(function () { return this; })() || Function('return this')();
|
|
12346
|
-
|
|
12347
|
-
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__("c8ba")))
|
|
12348
|
-
|
|
12349
12334
|
/***/ }),
|
|
12350
12335
|
|
|
12351
12336
|
/***/ "dc4a":
|
|
@@ -12395,7 +12380,7 @@ module.exports = function (IteratorConstructor, NAME, next, ENUMERABLE_NEXT) {
|
|
|
12395
12380
|
|
|
12396
12381
|
"use strict";
|
|
12397
12382
|
|
|
12398
|
-
var
|
|
12383
|
+
var globalThis = __webpack_require__("cfe9");
|
|
12399
12384
|
var DOMIterables = __webpack_require__("fdbc");
|
|
12400
12385
|
var DOMTokenListPrototype = __webpack_require__("785a");
|
|
12401
12386
|
var ArrayIteratorMethods = __webpack_require__("e260");
|
|
@@ -12427,7 +12412,7 @@ var handlePrototype = function (CollectionPrototype, COLLECTION_NAME) {
|
|
|
12427
12412
|
};
|
|
12428
12413
|
|
|
12429
12414
|
for (var COLLECTION_NAME in DOMIterables) {
|
|
12430
|
-
handlePrototype(
|
|
12415
|
+
handlePrototype(globalThis[COLLECTION_NAME] && globalThis[COLLECTION_NAME].prototype, COLLECTION_NAME);
|
|
12431
12416
|
}
|
|
12432
12417
|
|
|
12433
12418
|
handlePrototype(DOMTokenListPrototype, 'DOMTokenList');
|
|
@@ -12543,7 +12528,7 @@ module.exports = defineIterator(Array, 'Array', function (iterated, kind) {
|
|
|
12543
12528
|
var target = state.target;
|
|
12544
12529
|
var index = state.index++;
|
|
12545
12530
|
if (!target || index >= target.length) {
|
|
12546
|
-
state.target =
|
|
12531
|
+
state.target = null;
|
|
12547
12532
|
return createIterResultObject(undefined, true);
|
|
12548
12533
|
}
|
|
12549
12534
|
switch (state.kind) {
|
|
@@ -12699,6 +12684,30 @@ module.exports = function (it) {
|
|
|
12699
12684
|
};
|
|
12700
12685
|
|
|
12701
12686
|
|
|
12687
|
+
/***/ }),
|
|
12688
|
+
|
|
12689
|
+
/***/ "ebc1":
|
|
12690
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
12691
|
+
|
|
12692
|
+
"use strict";
|
|
12693
|
+
|
|
12694
|
+
var userAgent = __webpack_require__("b5db");
|
|
12695
|
+
|
|
12696
|
+
module.exports = /ipad|iphone|ipod/i.test(userAgent) && typeof Pebble != 'undefined';
|
|
12697
|
+
|
|
12698
|
+
|
|
12699
|
+
/***/ }),
|
|
12700
|
+
|
|
12701
|
+
/***/ "ec87":
|
|
12702
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
12703
|
+
|
|
12704
|
+
"use strict";
|
|
12705
|
+
|
|
12706
|
+
var userAgent = __webpack_require__("b5db");
|
|
12707
|
+
|
|
12708
|
+
module.exports = /web0s(?!.*chrome)/i.test(userAgent);
|
|
12709
|
+
|
|
12710
|
+
|
|
12702
12711
|
/***/ }),
|
|
12703
12712
|
|
|
12704
12713
|
/***/ "edd0":
|
|
@@ -12859,10 +12868,10 @@ module.exports = function (it) {
|
|
|
12859
12868
|
"use strict";
|
|
12860
12869
|
|
|
12861
12870
|
var fails = __webpack_require__("d039");
|
|
12862
|
-
var
|
|
12871
|
+
var globalThis = __webpack_require__("cfe9");
|
|
12863
12872
|
|
|
12864
12873
|
// babel-minify and Closure Compiler transpiles RegExp('.', 's') -> /./s and it causes SyntaxError
|
|
12865
|
-
var $RegExp =
|
|
12874
|
+
var $RegExp = globalThis.RegExp;
|
|
12866
12875
|
|
|
12867
12876
|
module.exports = fails(function () {
|
|
12868
12877
|
var re = $RegExp('.', 's');
|
|
@@ -12924,9 +12933,9 @@ module.exports = {
|
|
|
12924
12933
|
/* eslint-disable es/no-symbol -- required for testing */
|
|
12925
12934
|
var NATIVE_SYMBOL = __webpack_require__("04f8");
|
|
12926
12935
|
|
|
12927
|
-
module.exports = NATIVE_SYMBOL
|
|
12928
|
-
|
|
12929
|
-
|
|
12936
|
+
module.exports = NATIVE_SYMBOL &&
|
|
12937
|
+
!Symbol.sham &&
|
|
12938
|
+
typeof Symbol.iterator == 'symbol';
|
|
12930
12939
|
|
|
12931
12940
|
|
|
12932
12941
|
/***/ })
|