backend-management-ui 1.0.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/backend-management-ui.common.js +4752 -0
- package/backend-management-ui.common.js.map +1 -0
- package/backend-management-ui.umd.js +4763 -0
- package/backend-management-ui.umd.js.map +1 -0
- package/backend-management-ui.umd.min.js +12 -0
- package/backend-management-ui.umd.min.js.map +1 -0
- package/demo.html +1 -0
- package/package.json +12 -0
|
@@ -0,0 +1,4752 @@
|
|
|
1
|
+
/******/ (function() { // webpackBootstrap
|
|
2
|
+
/******/ var __webpack_modules__ = ({
|
|
3
|
+
|
|
4
|
+
/***/ 34:
|
|
5
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
6
|
+
|
|
7
|
+
"use strict";
|
|
8
|
+
|
|
9
|
+
var isCallable = __webpack_require__(4901);
|
|
10
|
+
|
|
11
|
+
module.exports = function (it) {
|
|
12
|
+
return typeof it == 'object' ? it !== null : isCallable(it);
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
/***/ }),
|
|
17
|
+
|
|
18
|
+
/***/ 81:
|
|
19
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
20
|
+
|
|
21
|
+
"use strict";
|
|
22
|
+
|
|
23
|
+
var call = __webpack_require__(9565);
|
|
24
|
+
var aCallable = __webpack_require__(9306);
|
|
25
|
+
var anObject = __webpack_require__(932);
|
|
26
|
+
var tryToString = __webpack_require__(6823);
|
|
27
|
+
var getIteratorMethod = __webpack_require__(851);
|
|
28
|
+
|
|
29
|
+
var $TypeError = TypeError;
|
|
30
|
+
|
|
31
|
+
module.exports = function (argument, usingIterator) {
|
|
32
|
+
var iteratorMethod = arguments.length < 2 ? getIteratorMethod(argument) : usingIterator;
|
|
33
|
+
if (aCallable(iteratorMethod)) return anObject(call(iteratorMethod, argument));
|
|
34
|
+
throw new $TypeError(tryToString(argument) + ' is not iterable');
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
/***/ }),
|
|
39
|
+
|
|
40
|
+
/***/ 283:
|
|
41
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
42
|
+
|
|
43
|
+
"use strict";
|
|
44
|
+
|
|
45
|
+
var uncurryThis = __webpack_require__(9504);
|
|
46
|
+
var fails = __webpack_require__(9039);
|
|
47
|
+
var isCallable = __webpack_require__(4901);
|
|
48
|
+
var hasOwn = __webpack_require__(9297);
|
|
49
|
+
var DESCRIPTORS = __webpack_require__(3724);
|
|
50
|
+
var CONFIGURABLE_FUNCTION_NAME = (__webpack_require__(350).CONFIGURABLE);
|
|
51
|
+
var inspectSource = __webpack_require__(3706);
|
|
52
|
+
var InternalStateModule = __webpack_require__(1181);
|
|
53
|
+
|
|
54
|
+
var enforceInternalState = InternalStateModule.enforce;
|
|
55
|
+
var getInternalState = InternalStateModule.get;
|
|
56
|
+
var $String = String;
|
|
57
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
58
|
+
var defineProperty = Object.defineProperty;
|
|
59
|
+
var stringSlice = uncurryThis(''.slice);
|
|
60
|
+
var replace = uncurryThis(''.replace);
|
|
61
|
+
var join = uncurryThis([].join);
|
|
62
|
+
|
|
63
|
+
var CONFIGURABLE_LENGTH = DESCRIPTORS && !fails(function () {
|
|
64
|
+
return defineProperty(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
|
|
65
|
+
});
|
|
66
|
+
|
|
67
|
+
var TEMPLATE = String(String).split('String');
|
|
68
|
+
|
|
69
|
+
var makeBuiltIn = module.exports = function (value, name, options) {
|
|
70
|
+
if (stringSlice($String(name), 0, 7) === 'Symbol(') {
|
|
71
|
+
name = '[' + replace($String(name), /^Symbol\(([^)]*)\).*$/, '$1') + ']';
|
|
72
|
+
}
|
|
73
|
+
if (options && options.getter) name = 'get ' + name;
|
|
74
|
+
if (options && options.setter) name = 'set ' + name;
|
|
75
|
+
if (!hasOwn(value, 'name') || (CONFIGURABLE_FUNCTION_NAME && value.name !== name)) {
|
|
76
|
+
if (DESCRIPTORS) defineProperty(value, 'name', { value: name, configurable: true });
|
|
77
|
+
else value.name = name;
|
|
78
|
+
}
|
|
79
|
+
if (CONFIGURABLE_LENGTH && options && hasOwn(options, 'arity') && value.length !== options.arity) {
|
|
80
|
+
defineProperty(value, 'length', { value: options.arity });
|
|
81
|
+
}
|
|
82
|
+
try {
|
|
83
|
+
if (options && hasOwn(options, 'constructor') && options.constructor) {
|
|
84
|
+
if (DESCRIPTORS) defineProperty(value, 'prototype', { writable: false });
|
|
85
|
+
// in V8 ~ Chrome 53, prototypes of some methods, like `Array.prototype.values`, are non-writable
|
|
86
|
+
} else if (value.prototype) value.prototype = undefined;
|
|
87
|
+
} catch (error) { /* empty */ }
|
|
88
|
+
var state = enforceInternalState(value);
|
|
89
|
+
if (!hasOwn(state, 'source')) {
|
|
90
|
+
state.source = join(TEMPLATE, typeof name == 'string' ? name : '');
|
|
91
|
+
} return value;
|
|
92
|
+
};
|
|
93
|
+
|
|
94
|
+
// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
|
|
95
|
+
// eslint-disable-next-line no-extend-native -- required
|
|
96
|
+
Function.prototype.toString = makeBuiltIn(function toString() {
|
|
97
|
+
return isCallable(this) && getInternalState(this).source || inspectSource(this);
|
|
98
|
+
}, 'toString');
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
/***/ }),
|
|
102
|
+
|
|
103
|
+
/***/ 350:
|
|
104
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
105
|
+
|
|
106
|
+
"use strict";
|
|
107
|
+
|
|
108
|
+
var DESCRIPTORS = __webpack_require__(3724);
|
|
109
|
+
var hasOwn = __webpack_require__(9297);
|
|
110
|
+
|
|
111
|
+
var FunctionPrototype = Function.prototype;
|
|
112
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
113
|
+
var getDescriptor = DESCRIPTORS && Object.getOwnPropertyDescriptor;
|
|
114
|
+
|
|
115
|
+
var EXISTS = hasOwn(FunctionPrototype, 'name');
|
|
116
|
+
// additional protection from minified / mangled / dropped function names
|
|
117
|
+
var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
|
|
118
|
+
var CONFIGURABLE = EXISTS && (!DESCRIPTORS || (DESCRIPTORS && getDescriptor(FunctionPrototype, 'name').configurable));
|
|
119
|
+
|
|
120
|
+
module.exports = {
|
|
121
|
+
EXISTS: EXISTS,
|
|
122
|
+
PROPER: PROPER,
|
|
123
|
+
CONFIGURABLE: CONFIGURABLE
|
|
124
|
+
};
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
/***/ }),
|
|
128
|
+
|
|
129
|
+
/***/ 397:
|
|
130
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
131
|
+
|
|
132
|
+
"use strict";
|
|
133
|
+
|
|
134
|
+
var getBuiltIn = __webpack_require__(7751);
|
|
135
|
+
|
|
136
|
+
module.exports = getBuiltIn('document', 'documentElement');
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
/***/ }),
|
|
140
|
+
|
|
141
|
+
/***/ 421:
|
|
142
|
+
/***/ (function(module) {
|
|
143
|
+
|
|
144
|
+
"use strict";
|
|
145
|
+
|
|
146
|
+
module.exports = {};
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
/***/ }),
|
|
150
|
+
|
|
151
|
+
/***/ 507:
|
|
152
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
153
|
+
|
|
154
|
+
"use strict";
|
|
155
|
+
|
|
156
|
+
var call = __webpack_require__(9565);
|
|
157
|
+
|
|
158
|
+
module.exports = function (record, fn, ITERATOR_INSTEAD_OF_RECORD) {
|
|
159
|
+
var iterator = ITERATOR_INSTEAD_OF_RECORD ? record : record.iterator;
|
|
160
|
+
var next = record.next;
|
|
161
|
+
var step, result;
|
|
162
|
+
while (!(step = call(next, iterator)).done) {
|
|
163
|
+
result = fn(step.value);
|
|
164
|
+
if (result !== undefined) return result;
|
|
165
|
+
}
|
|
166
|
+
};
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
/***/ }),
|
|
170
|
+
|
|
171
|
+
/***/ 616:
|
|
172
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
173
|
+
|
|
174
|
+
"use strict";
|
|
175
|
+
|
|
176
|
+
var fails = __webpack_require__(9039);
|
|
177
|
+
|
|
178
|
+
module.exports = !fails(function () {
|
|
179
|
+
// eslint-disable-next-line es/no-function-prototype-bind -- safe
|
|
180
|
+
var test = (function () { /* empty */ }).bind();
|
|
181
|
+
// eslint-disable-next-line no-prototype-builtins -- safe
|
|
182
|
+
return typeof test != 'function' || test.hasOwnProperty('prototype');
|
|
183
|
+
});
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
/***/ }),
|
|
187
|
+
|
|
188
|
+
/***/ 679:
|
|
189
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
190
|
+
|
|
191
|
+
"use strict";
|
|
192
|
+
|
|
193
|
+
var isPrototypeOf = __webpack_require__(1625);
|
|
194
|
+
|
|
195
|
+
var $TypeError = TypeError;
|
|
196
|
+
|
|
197
|
+
module.exports = function (it, Prototype) {
|
|
198
|
+
if (isPrototypeOf(Prototype, it)) return it;
|
|
199
|
+
throw new $TypeError('Incorrect invocation');
|
|
200
|
+
};
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
/***/ }),
|
|
204
|
+
|
|
205
|
+
/***/ 741:
|
|
206
|
+
/***/ (function(module) {
|
|
207
|
+
|
|
208
|
+
"use strict";
|
|
209
|
+
|
|
210
|
+
var ceil = Math.ceil;
|
|
211
|
+
var floor = Math.floor;
|
|
212
|
+
|
|
213
|
+
// `Math.trunc` method
|
|
214
|
+
// https://tc39.es/ecma262/#sec-math.trunc
|
|
215
|
+
// eslint-disable-next-line es/no-math-trunc -- safe
|
|
216
|
+
module.exports = Math.trunc || function trunc(x) {
|
|
217
|
+
var n = +x;
|
|
218
|
+
return (n > 0 ? floor : ceil)(n);
|
|
219
|
+
};
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
/***/ }),
|
|
223
|
+
|
|
224
|
+
/***/ 757:
|
|
225
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
226
|
+
|
|
227
|
+
"use strict";
|
|
228
|
+
|
|
229
|
+
var getBuiltIn = __webpack_require__(7751);
|
|
230
|
+
var isCallable = __webpack_require__(4901);
|
|
231
|
+
var isPrototypeOf = __webpack_require__(1625);
|
|
232
|
+
var USE_SYMBOL_AS_UID = __webpack_require__(7040);
|
|
233
|
+
|
|
234
|
+
var $Object = Object;
|
|
235
|
+
|
|
236
|
+
module.exports = USE_SYMBOL_AS_UID ? function (it) {
|
|
237
|
+
return typeof it == 'symbol';
|
|
238
|
+
} : function (it) {
|
|
239
|
+
var $Symbol = getBuiltIn('Symbol');
|
|
240
|
+
return isCallable($Symbol) && isPrototypeOf($Symbol.prototype, $Object(it));
|
|
241
|
+
};
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
/***/ }),
|
|
245
|
+
|
|
246
|
+
/***/ 851:
|
|
247
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
248
|
+
|
|
249
|
+
"use strict";
|
|
250
|
+
|
|
251
|
+
var classof = __webpack_require__(6955);
|
|
252
|
+
var getMethod = __webpack_require__(5966);
|
|
253
|
+
var isNullOrUndefined = __webpack_require__(4117);
|
|
254
|
+
var Iterators = __webpack_require__(6269);
|
|
255
|
+
var wellKnownSymbol = __webpack_require__(8227);
|
|
256
|
+
|
|
257
|
+
var ITERATOR = wellKnownSymbol('iterator');
|
|
258
|
+
|
|
259
|
+
module.exports = function (it) {
|
|
260
|
+
if (!isNullOrUndefined(it)) return getMethod(it, ITERATOR)
|
|
261
|
+
|| getMethod(it, '@@iterator')
|
|
262
|
+
|| Iterators[classof(it)];
|
|
263
|
+
};
|
|
264
|
+
|
|
265
|
+
|
|
266
|
+
/***/ }),
|
|
267
|
+
|
|
268
|
+
/***/ 932:
|
|
269
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
270
|
+
|
|
271
|
+
"use strict";
|
|
272
|
+
|
|
273
|
+
var isObject = __webpack_require__(34);
|
|
274
|
+
|
|
275
|
+
var $String = String;
|
|
276
|
+
var $TypeError = TypeError;
|
|
277
|
+
|
|
278
|
+
// `Assert: Type(argument) is Object`
|
|
279
|
+
module.exports = function (argument) {
|
|
280
|
+
if (isObject(argument)) return argument;
|
|
281
|
+
throw new $TypeError($String(argument) + ' is not an object');
|
|
282
|
+
};
|
|
283
|
+
|
|
284
|
+
|
|
285
|
+
/***/ }),
|
|
286
|
+
|
|
287
|
+
/***/ 1072:
|
|
288
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
289
|
+
|
|
290
|
+
"use strict";
|
|
291
|
+
|
|
292
|
+
var internalObjectKeys = __webpack_require__(1828);
|
|
293
|
+
var enumBugKeys = __webpack_require__(8727);
|
|
294
|
+
|
|
295
|
+
// `Object.keys` method
|
|
296
|
+
// https://tc39.es/ecma262/#sec-object.keys
|
|
297
|
+
// eslint-disable-next-line es/no-object-keys -- safe
|
|
298
|
+
module.exports = Object.keys || function keys(O) {
|
|
299
|
+
return internalObjectKeys(O, enumBugKeys);
|
|
300
|
+
};
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
/***/ }),
|
|
304
|
+
|
|
305
|
+
/***/ 1148:
|
|
306
|
+
/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
|
|
307
|
+
|
|
308
|
+
"use strict";
|
|
309
|
+
|
|
310
|
+
var $ = __webpack_require__(6518);
|
|
311
|
+
var call = __webpack_require__(9565);
|
|
312
|
+
var iterate = __webpack_require__(2652);
|
|
313
|
+
var aCallable = __webpack_require__(9306);
|
|
314
|
+
var anObject = __webpack_require__(932);
|
|
315
|
+
var getIteratorDirect = __webpack_require__(1767);
|
|
316
|
+
var iteratorClose = __webpack_require__(9539);
|
|
317
|
+
var iteratorHelperWithoutClosingOnEarlyError = __webpack_require__(4549);
|
|
318
|
+
|
|
319
|
+
var everyWithoutClosingOnEarlyError = iteratorHelperWithoutClosingOnEarlyError('every', TypeError);
|
|
320
|
+
|
|
321
|
+
// `Iterator.prototype.every` method
|
|
322
|
+
// https://tc39.es/ecma262/#sec-iterator.prototype.every
|
|
323
|
+
$({ target: 'Iterator', proto: true, real: true, forced: everyWithoutClosingOnEarlyError }, {
|
|
324
|
+
every: function every(predicate) {
|
|
325
|
+
anObject(this);
|
|
326
|
+
try {
|
|
327
|
+
aCallable(predicate);
|
|
328
|
+
} catch (error) {
|
|
329
|
+
iteratorClose(this, 'throw', error);
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
if (everyWithoutClosingOnEarlyError) return call(everyWithoutClosingOnEarlyError, this, predicate);
|
|
333
|
+
|
|
334
|
+
var record = getIteratorDirect(this);
|
|
335
|
+
var counter = 0;
|
|
336
|
+
return !iterate(record, function (value, stop) {
|
|
337
|
+
if (!predicate(value, counter++)) return stop();
|
|
338
|
+
}, { IS_RECORD: true, INTERRUPTED: true }).stopped;
|
|
339
|
+
}
|
|
340
|
+
});
|
|
341
|
+
|
|
342
|
+
|
|
343
|
+
/***/ }),
|
|
344
|
+
|
|
345
|
+
/***/ 1181:
|
|
346
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
347
|
+
|
|
348
|
+
"use strict";
|
|
349
|
+
|
|
350
|
+
var NATIVE_WEAK_MAP = __webpack_require__(8622);
|
|
351
|
+
var globalThis = __webpack_require__(4576);
|
|
352
|
+
var isObject = __webpack_require__(34);
|
|
353
|
+
var createNonEnumerableProperty = __webpack_require__(6699);
|
|
354
|
+
var hasOwn = __webpack_require__(9297);
|
|
355
|
+
var shared = __webpack_require__(7629);
|
|
356
|
+
var sharedKey = __webpack_require__(6119);
|
|
357
|
+
var hiddenKeys = __webpack_require__(421);
|
|
358
|
+
|
|
359
|
+
var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
|
|
360
|
+
var TypeError = globalThis.TypeError;
|
|
361
|
+
var WeakMap = globalThis.WeakMap;
|
|
362
|
+
var set, get, has;
|
|
363
|
+
|
|
364
|
+
var enforce = function (it) {
|
|
365
|
+
return has(it) ? get(it) : set(it, {});
|
|
366
|
+
};
|
|
367
|
+
|
|
368
|
+
var getterFor = function (TYPE) {
|
|
369
|
+
return function (it) {
|
|
370
|
+
var state;
|
|
371
|
+
if (!isObject(it) || (state = get(it)).type !== TYPE) {
|
|
372
|
+
throw new TypeError('Incompatible receiver, ' + TYPE + ' required');
|
|
373
|
+
} return state;
|
|
374
|
+
};
|
|
375
|
+
};
|
|
376
|
+
|
|
377
|
+
if (NATIVE_WEAK_MAP || shared.state) {
|
|
378
|
+
var store = shared.state || (shared.state = new WeakMap());
|
|
379
|
+
/* eslint-disable no-self-assign -- prototype methods protection */
|
|
380
|
+
store.get = store.get;
|
|
381
|
+
store.has = store.has;
|
|
382
|
+
store.set = store.set;
|
|
383
|
+
/* eslint-enable no-self-assign -- prototype methods protection */
|
|
384
|
+
set = function (it, metadata) {
|
|
385
|
+
if (store.has(it)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
|
|
386
|
+
metadata.facade = it;
|
|
387
|
+
store.set(it, metadata);
|
|
388
|
+
return metadata;
|
|
389
|
+
};
|
|
390
|
+
get = function (it) {
|
|
391
|
+
return store.get(it) || {};
|
|
392
|
+
};
|
|
393
|
+
has = function (it) {
|
|
394
|
+
return store.has(it);
|
|
395
|
+
};
|
|
396
|
+
} else {
|
|
397
|
+
var STATE = sharedKey('state');
|
|
398
|
+
hiddenKeys[STATE] = true;
|
|
399
|
+
set = function (it, metadata) {
|
|
400
|
+
if (hasOwn(it, STATE)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
|
|
401
|
+
metadata.facade = it;
|
|
402
|
+
createNonEnumerableProperty(it, STATE, metadata);
|
|
403
|
+
return metadata;
|
|
404
|
+
};
|
|
405
|
+
get = function (it) {
|
|
406
|
+
return hasOwn(it, STATE) ? it[STATE] : {};
|
|
407
|
+
};
|
|
408
|
+
has = function (it) {
|
|
409
|
+
return hasOwn(it, STATE);
|
|
410
|
+
};
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
module.exports = {
|
|
414
|
+
set: set,
|
|
415
|
+
get: get,
|
|
416
|
+
has: has,
|
|
417
|
+
enforce: enforce,
|
|
418
|
+
getterFor: getterFor
|
|
419
|
+
};
|
|
420
|
+
|
|
421
|
+
|
|
422
|
+
/***/ }),
|
|
423
|
+
|
|
424
|
+
/***/ 1291:
|
|
425
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
426
|
+
|
|
427
|
+
"use strict";
|
|
428
|
+
|
|
429
|
+
var trunc = __webpack_require__(741);
|
|
430
|
+
|
|
431
|
+
// `ToIntegerOrInfinity` abstract operation
|
|
432
|
+
// https://tc39.es/ecma262/#sec-tointegerorinfinity
|
|
433
|
+
module.exports = function (argument) {
|
|
434
|
+
var number = +argument;
|
|
435
|
+
// eslint-disable-next-line no-self-compare -- NaN check
|
|
436
|
+
return number !== number || number === 0 ? 0 : trunc(number);
|
|
437
|
+
};
|
|
438
|
+
|
|
439
|
+
|
|
440
|
+
/***/ }),
|
|
441
|
+
|
|
442
|
+
/***/ 1548:
|
|
443
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
444
|
+
|
|
445
|
+
"use strict";
|
|
446
|
+
|
|
447
|
+
var globalThis = __webpack_require__(4576);
|
|
448
|
+
var fails = __webpack_require__(9039);
|
|
449
|
+
var V8 = __webpack_require__(9519);
|
|
450
|
+
var ENVIRONMENT = __webpack_require__(4215);
|
|
451
|
+
|
|
452
|
+
var structuredClone = globalThis.structuredClone;
|
|
453
|
+
|
|
454
|
+
module.exports = !!structuredClone && !fails(function () {
|
|
455
|
+
// prevent V8 ArrayBufferDetaching protector cell invalidation and performance degradation
|
|
456
|
+
// https://github.com/zloirock/core-js/issues/679
|
|
457
|
+
if ((ENVIRONMENT === 'DENO' && V8 > 92) || (ENVIRONMENT === 'NODE' && V8 > 94) || (ENVIRONMENT === 'BROWSER' && V8 > 97)) return false;
|
|
458
|
+
var buffer = new ArrayBuffer(8);
|
|
459
|
+
var clone = structuredClone(buffer, { transfer: [buffer] });
|
|
460
|
+
return buffer.byteLength !== 0 || clone.byteLength !== 8;
|
|
461
|
+
});
|
|
462
|
+
|
|
463
|
+
|
|
464
|
+
/***/ }),
|
|
465
|
+
|
|
466
|
+
/***/ 1625:
|
|
467
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
468
|
+
|
|
469
|
+
"use strict";
|
|
470
|
+
|
|
471
|
+
var uncurryThis = __webpack_require__(9504);
|
|
472
|
+
|
|
473
|
+
module.exports = uncurryThis({}.isPrototypeOf);
|
|
474
|
+
|
|
475
|
+
|
|
476
|
+
/***/ }),
|
|
477
|
+
|
|
478
|
+
/***/ 1698:
|
|
479
|
+
/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
|
|
480
|
+
|
|
481
|
+
"use strict";
|
|
482
|
+
|
|
483
|
+
var $ = __webpack_require__(6518);
|
|
484
|
+
var union = __webpack_require__(4204);
|
|
485
|
+
var setMethodGetKeysBeforeCloning = __webpack_require__(9835);
|
|
486
|
+
var setMethodAcceptSetLike = __webpack_require__(4916);
|
|
487
|
+
|
|
488
|
+
var FORCED = !setMethodAcceptSetLike('union') || !setMethodGetKeysBeforeCloning('union');
|
|
489
|
+
|
|
490
|
+
// `Set.prototype.union` method
|
|
491
|
+
// https://tc39.es/ecma262/#sec-set.prototype.union
|
|
492
|
+
$({ target: 'Set', proto: true, real: true, forced: FORCED }, {
|
|
493
|
+
union: union
|
|
494
|
+
});
|
|
495
|
+
|
|
496
|
+
|
|
497
|
+
/***/ }),
|
|
498
|
+
|
|
499
|
+
/***/ 1767:
|
|
500
|
+
/***/ (function(module) {
|
|
501
|
+
|
|
502
|
+
"use strict";
|
|
503
|
+
|
|
504
|
+
// `GetIteratorDirect(obj)` abstract operation
|
|
505
|
+
// https://tc39.es/ecma262/#sec-getiteratordirect
|
|
506
|
+
module.exports = function (obj) {
|
|
507
|
+
return {
|
|
508
|
+
iterator: obj,
|
|
509
|
+
next: obj.next,
|
|
510
|
+
done: false
|
|
511
|
+
};
|
|
512
|
+
};
|
|
513
|
+
|
|
514
|
+
|
|
515
|
+
/***/ }),
|
|
516
|
+
|
|
517
|
+
/***/ 1828:
|
|
518
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
519
|
+
|
|
520
|
+
"use strict";
|
|
521
|
+
|
|
522
|
+
var uncurryThis = __webpack_require__(9504);
|
|
523
|
+
var hasOwn = __webpack_require__(9297);
|
|
524
|
+
var toIndexedObject = __webpack_require__(5397);
|
|
525
|
+
var indexOf = (__webpack_require__(9617).indexOf);
|
|
526
|
+
var hiddenKeys = __webpack_require__(421);
|
|
527
|
+
|
|
528
|
+
var push = uncurryThis([].push);
|
|
529
|
+
|
|
530
|
+
module.exports = function (object, names) {
|
|
531
|
+
var O = toIndexedObject(object);
|
|
532
|
+
var i = 0;
|
|
533
|
+
var result = [];
|
|
534
|
+
var key;
|
|
535
|
+
for (key in O) !hasOwn(hiddenKeys, key) && hasOwn(O, key) && push(result, key);
|
|
536
|
+
// Don't enum bug & hidden keys
|
|
537
|
+
while (names.length > i) if (hasOwn(O, key = names[i++])) {
|
|
538
|
+
~indexOf(result, key) || push(result, key);
|
|
539
|
+
}
|
|
540
|
+
return result;
|
|
541
|
+
};
|
|
542
|
+
|
|
543
|
+
|
|
544
|
+
/***/ }),
|
|
545
|
+
|
|
546
|
+
/***/ 2106:
|
|
547
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
548
|
+
|
|
549
|
+
"use strict";
|
|
550
|
+
|
|
551
|
+
var makeBuiltIn = __webpack_require__(283);
|
|
552
|
+
var defineProperty = __webpack_require__(4913);
|
|
553
|
+
|
|
554
|
+
module.exports = function (target, name, descriptor) {
|
|
555
|
+
if (descriptor.get) makeBuiltIn(descriptor.get, name, { getter: true });
|
|
556
|
+
if (descriptor.set) makeBuiltIn(descriptor.set, name, { setter: true });
|
|
557
|
+
return defineProperty.f(target, name, descriptor);
|
|
558
|
+
};
|
|
559
|
+
|
|
560
|
+
|
|
561
|
+
/***/ }),
|
|
562
|
+
|
|
563
|
+
/***/ 2140:
|
|
564
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
565
|
+
|
|
566
|
+
"use strict";
|
|
567
|
+
|
|
568
|
+
var wellKnownSymbol = __webpack_require__(8227);
|
|
569
|
+
|
|
570
|
+
var TO_STRING_TAG = wellKnownSymbol('toStringTag');
|
|
571
|
+
var test = {};
|
|
572
|
+
// eslint-disable-next-line unicorn/no-immediate-mutation -- ES3 syntax limitation
|
|
573
|
+
test[TO_STRING_TAG] = 'z';
|
|
574
|
+
|
|
575
|
+
module.exports = String(test) === '[object z]';
|
|
576
|
+
|
|
577
|
+
|
|
578
|
+
/***/ }),
|
|
579
|
+
|
|
580
|
+
/***/ 2195:
|
|
581
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
582
|
+
|
|
583
|
+
"use strict";
|
|
584
|
+
|
|
585
|
+
var uncurryThis = __webpack_require__(9504);
|
|
586
|
+
|
|
587
|
+
var toString = uncurryThis({}.toString);
|
|
588
|
+
var stringSlice = uncurryThis(''.slice);
|
|
589
|
+
|
|
590
|
+
module.exports = function (it) {
|
|
591
|
+
return stringSlice(toString(it), 8, -1);
|
|
592
|
+
};
|
|
593
|
+
|
|
594
|
+
|
|
595
|
+
/***/ }),
|
|
596
|
+
|
|
597
|
+
/***/ 2211:
|
|
598
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
599
|
+
|
|
600
|
+
"use strict";
|
|
601
|
+
|
|
602
|
+
var fails = __webpack_require__(9039);
|
|
603
|
+
|
|
604
|
+
module.exports = !fails(function () {
|
|
605
|
+
function F() { /* empty */ }
|
|
606
|
+
F.prototype.constructor = null;
|
|
607
|
+
// eslint-disable-next-line es/no-object-getprototypeof -- required for testing
|
|
608
|
+
return Object.getPrototypeOf(new F()) !== F.prototype;
|
|
609
|
+
});
|
|
610
|
+
|
|
611
|
+
|
|
612
|
+
/***/ }),
|
|
613
|
+
|
|
614
|
+
/***/ 2360:
|
|
615
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
616
|
+
|
|
617
|
+
"use strict";
|
|
618
|
+
|
|
619
|
+
/* global ActiveXObject -- old IE, WSH */
|
|
620
|
+
var anObject = __webpack_require__(932);
|
|
621
|
+
var definePropertiesModule = __webpack_require__(6801);
|
|
622
|
+
var enumBugKeys = __webpack_require__(8727);
|
|
623
|
+
var hiddenKeys = __webpack_require__(421);
|
|
624
|
+
var html = __webpack_require__(397);
|
|
625
|
+
var documentCreateElement = __webpack_require__(4055);
|
|
626
|
+
var sharedKey = __webpack_require__(6119);
|
|
627
|
+
|
|
628
|
+
var GT = '>';
|
|
629
|
+
var LT = '<';
|
|
630
|
+
var PROTOTYPE = 'prototype';
|
|
631
|
+
var SCRIPT = 'script';
|
|
632
|
+
var IE_PROTO = sharedKey('IE_PROTO');
|
|
633
|
+
|
|
634
|
+
var EmptyConstructor = function () { /* empty */ };
|
|
635
|
+
|
|
636
|
+
var scriptTag = function (content) {
|
|
637
|
+
return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;
|
|
638
|
+
};
|
|
639
|
+
|
|
640
|
+
// Create object with fake `null` prototype: use ActiveX Object with cleared prototype
|
|
641
|
+
var NullProtoObjectViaActiveX = function (activeXDocument) {
|
|
642
|
+
activeXDocument.write(scriptTag(''));
|
|
643
|
+
activeXDocument.close();
|
|
644
|
+
var temp = activeXDocument.parentWindow.Object;
|
|
645
|
+
// eslint-disable-next-line no-useless-assignment -- avoid memory leak
|
|
646
|
+
activeXDocument = null;
|
|
647
|
+
return temp;
|
|
648
|
+
};
|
|
649
|
+
|
|
650
|
+
// Create object with fake `null` prototype: use iframe Object with cleared prototype
|
|
651
|
+
var NullProtoObjectViaIFrame = function () {
|
|
652
|
+
// Thrash, waste and sodomy: IE GC bug
|
|
653
|
+
var iframe = documentCreateElement('iframe');
|
|
654
|
+
var JS = 'java' + SCRIPT + ':';
|
|
655
|
+
var iframeDocument;
|
|
656
|
+
iframe.style.display = 'none';
|
|
657
|
+
html.appendChild(iframe);
|
|
658
|
+
// https://github.com/zloirock/core-js/issues/475
|
|
659
|
+
iframe.src = String(JS);
|
|
660
|
+
iframeDocument = iframe.contentWindow.document;
|
|
661
|
+
iframeDocument.open();
|
|
662
|
+
iframeDocument.write(scriptTag('document.F=Object'));
|
|
663
|
+
iframeDocument.close();
|
|
664
|
+
return iframeDocument.F;
|
|
665
|
+
};
|
|
666
|
+
|
|
667
|
+
// Check for document.domain and active x support
|
|
668
|
+
// No need to use active x approach when document.domain is not set
|
|
669
|
+
// see https://github.com/es-shims/es5-shim/issues/150
|
|
670
|
+
// variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346
|
|
671
|
+
// avoid IE GC bug
|
|
672
|
+
var activeXDocument;
|
|
673
|
+
var NullProtoObject = function () {
|
|
674
|
+
try {
|
|
675
|
+
activeXDocument = new ActiveXObject('htmlfile');
|
|
676
|
+
} catch (error) { /* ignore */ }
|
|
677
|
+
NullProtoObject = typeof document != 'undefined'
|
|
678
|
+
? document.domain && activeXDocument
|
|
679
|
+
? NullProtoObjectViaActiveX(activeXDocument) // old IE
|
|
680
|
+
: NullProtoObjectViaIFrame()
|
|
681
|
+
: NullProtoObjectViaActiveX(activeXDocument); // WSH
|
|
682
|
+
var length = enumBugKeys.length;
|
|
683
|
+
while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]];
|
|
684
|
+
return NullProtoObject();
|
|
685
|
+
};
|
|
686
|
+
|
|
687
|
+
hiddenKeys[IE_PROTO] = true;
|
|
688
|
+
|
|
689
|
+
// `Object.create` method
|
|
690
|
+
// https://tc39.es/ecma262/#sec-object.create
|
|
691
|
+
// eslint-disable-next-line es/no-object-create -- safe
|
|
692
|
+
module.exports = Object.create || function create(O, Properties) {
|
|
693
|
+
var result;
|
|
694
|
+
if (O !== null) {
|
|
695
|
+
EmptyConstructor[PROTOTYPE] = anObject(O);
|
|
696
|
+
result = new EmptyConstructor();
|
|
697
|
+
EmptyConstructor[PROTOTYPE] = null;
|
|
698
|
+
// add "__proto__" for Object.getPrototypeOf polyfill
|
|
699
|
+
result[IE_PROTO] = O;
|
|
700
|
+
} else result = NullProtoObject();
|
|
701
|
+
return Properties === undefined ? result : definePropertiesModule.f(result, Properties);
|
|
702
|
+
};
|
|
703
|
+
|
|
704
|
+
|
|
705
|
+
/***/ }),
|
|
706
|
+
|
|
707
|
+
/***/ 2475:
|
|
708
|
+
/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
|
|
709
|
+
|
|
710
|
+
"use strict";
|
|
711
|
+
|
|
712
|
+
var $ = __webpack_require__(6518);
|
|
713
|
+
var isSupersetOf = __webpack_require__(8527);
|
|
714
|
+
var setMethodAcceptSetLike = __webpack_require__(4916);
|
|
715
|
+
|
|
716
|
+
var INCORRECT = !setMethodAcceptSetLike('isSupersetOf', function (result) {
|
|
717
|
+
return !result;
|
|
718
|
+
});
|
|
719
|
+
|
|
720
|
+
// `Set.prototype.isSupersetOf` method
|
|
721
|
+
// https://tc39.es/ecma262/#sec-set.prototype.issupersetof
|
|
722
|
+
$({ target: 'Set', proto: true, real: true, forced: INCORRECT }, {
|
|
723
|
+
isSupersetOf: isSupersetOf
|
|
724
|
+
});
|
|
725
|
+
|
|
726
|
+
|
|
727
|
+
/***/ }),
|
|
728
|
+
|
|
729
|
+
/***/ 2652:
|
|
730
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
731
|
+
|
|
732
|
+
"use strict";
|
|
733
|
+
|
|
734
|
+
var bind = __webpack_require__(6080);
|
|
735
|
+
var call = __webpack_require__(9565);
|
|
736
|
+
var anObject = __webpack_require__(932);
|
|
737
|
+
var tryToString = __webpack_require__(6823);
|
|
738
|
+
var isArrayIteratorMethod = __webpack_require__(4209);
|
|
739
|
+
var lengthOfArrayLike = __webpack_require__(6198);
|
|
740
|
+
var isPrototypeOf = __webpack_require__(1625);
|
|
741
|
+
var getIterator = __webpack_require__(81);
|
|
742
|
+
var getIteratorMethod = __webpack_require__(851);
|
|
743
|
+
var iteratorClose = __webpack_require__(9539);
|
|
744
|
+
|
|
745
|
+
var $TypeError = TypeError;
|
|
746
|
+
|
|
747
|
+
var Result = function (stopped, result) {
|
|
748
|
+
this.stopped = stopped;
|
|
749
|
+
this.result = result;
|
|
750
|
+
};
|
|
751
|
+
|
|
752
|
+
var ResultPrototype = Result.prototype;
|
|
753
|
+
|
|
754
|
+
module.exports = function (iterable, unboundFunction, options) {
|
|
755
|
+
var that = options && options.that;
|
|
756
|
+
var AS_ENTRIES = !!(options && options.AS_ENTRIES);
|
|
757
|
+
var IS_RECORD = !!(options && options.IS_RECORD);
|
|
758
|
+
var IS_ITERATOR = !!(options && options.IS_ITERATOR);
|
|
759
|
+
var INTERRUPTED = !!(options && options.INTERRUPTED);
|
|
760
|
+
var fn = bind(unboundFunction, that);
|
|
761
|
+
var iterator, iterFn, index, length, result, next, step;
|
|
762
|
+
|
|
763
|
+
var stop = function (condition) {
|
|
764
|
+
if (iterator) iteratorClose(iterator, 'normal');
|
|
765
|
+
return new Result(true, condition);
|
|
766
|
+
};
|
|
767
|
+
|
|
768
|
+
var callFn = function (value) {
|
|
769
|
+
if (AS_ENTRIES) {
|
|
770
|
+
anObject(value);
|
|
771
|
+
return INTERRUPTED ? fn(value[0], value[1], stop) : fn(value[0], value[1]);
|
|
772
|
+
} return INTERRUPTED ? fn(value, stop) : fn(value);
|
|
773
|
+
};
|
|
774
|
+
|
|
775
|
+
if (IS_RECORD) {
|
|
776
|
+
iterator = iterable.iterator;
|
|
777
|
+
} else if (IS_ITERATOR) {
|
|
778
|
+
iterator = iterable;
|
|
779
|
+
} else {
|
|
780
|
+
iterFn = getIteratorMethod(iterable);
|
|
781
|
+
if (!iterFn) throw new $TypeError(tryToString(iterable) + ' is not iterable');
|
|
782
|
+
// optimisation for array iterators
|
|
783
|
+
if (isArrayIteratorMethod(iterFn)) {
|
|
784
|
+
for (index = 0, length = lengthOfArrayLike(iterable); length > index; index++) {
|
|
785
|
+
result = callFn(iterable[index]);
|
|
786
|
+
if (result && isPrototypeOf(ResultPrototype, result)) return result;
|
|
787
|
+
} return new Result(false);
|
|
788
|
+
}
|
|
789
|
+
iterator = getIterator(iterable, iterFn);
|
|
790
|
+
}
|
|
791
|
+
|
|
792
|
+
next = IS_RECORD ? iterable.next : iterator.next;
|
|
793
|
+
while (!(step = call(next, iterator)).done) {
|
|
794
|
+
try {
|
|
795
|
+
result = callFn(step.value);
|
|
796
|
+
} catch (error) {
|
|
797
|
+
iteratorClose(iterator, 'throw', error);
|
|
798
|
+
}
|
|
799
|
+
if (typeof result == 'object' && result && isPrototypeOf(ResultPrototype, result)) return result;
|
|
800
|
+
} return new Result(false);
|
|
801
|
+
};
|
|
802
|
+
|
|
803
|
+
|
|
804
|
+
/***/ }),
|
|
805
|
+
|
|
806
|
+
/***/ 2777:
|
|
807
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
808
|
+
|
|
809
|
+
"use strict";
|
|
810
|
+
|
|
811
|
+
var call = __webpack_require__(9565);
|
|
812
|
+
var isObject = __webpack_require__(34);
|
|
813
|
+
var isSymbol = __webpack_require__(757);
|
|
814
|
+
var getMethod = __webpack_require__(5966);
|
|
815
|
+
var ordinaryToPrimitive = __webpack_require__(4270);
|
|
816
|
+
var wellKnownSymbol = __webpack_require__(8227);
|
|
817
|
+
|
|
818
|
+
var $TypeError = TypeError;
|
|
819
|
+
var TO_PRIMITIVE = wellKnownSymbol('toPrimitive');
|
|
820
|
+
|
|
821
|
+
// `ToPrimitive` abstract operation
|
|
822
|
+
// https://tc39.es/ecma262/#sec-toprimitive
|
|
823
|
+
module.exports = function (input, pref) {
|
|
824
|
+
if (!isObject(input) || isSymbol(input)) return input;
|
|
825
|
+
var exoticToPrim = getMethod(input, TO_PRIMITIVE);
|
|
826
|
+
var result;
|
|
827
|
+
if (exoticToPrim) {
|
|
828
|
+
if (pref === undefined) pref = 'default';
|
|
829
|
+
result = call(exoticToPrim, input, pref);
|
|
830
|
+
if (!isObject(result) || isSymbol(result)) return result;
|
|
831
|
+
throw new $TypeError("Can't convert object to primitive value");
|
|
832
|
+
}
|
|
833
|
+
if (pref === undefined) pref = 'number';
|
|
834
|
+
return ordinaryToPrimitive(input, pref);
|
|
835
|
+
};
|
|
836
|
+
|
|
837
|
+
|
|
838
|
+
/***/ }),
|
|
839
|
+
|
|
840
|
+
/***/ 2787:
|
|
841
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
842
|
+
|
|
843
|
+
"use strict";
|
|
844
|
+
|
|
845
|
+
var hasOwn = __webpack_require__(9297);
|
|
846
|
+
var isCallable = __webpack_require__(4901);
|
|
847
|
+
var toObject = __webpack_require__(8981);
|
|
848
|
+
var sharedKey = __webpack_require__(6119);
|
|
849
|
+
var CORRECT_PROTOTYPE_GETTER = __webpack_require__(2211);
|
|
850
|
+
|
|
851
|
+
var IE_PROTO = sharedKey('IE_PROTO');
|
|
852
|
+
var $Object = Object;
|
|
853
|
+
var ObjectPrototype = $Object.prototype;
|
|
854
|
+
|
|
855
|
+
// `Object.getPrototypeOf` method
|
|
856
|
+
// https://tc39.es/ecma262/#sec-object.getprototypeof
|
|
857
|
+
// eslint-disable-next-line es/no-object-getprototypeof -- safe
|
|
858
|
+
module.exports = CORRECT_PROTOTYPE_GETTER ? $Object.getPrototypeOf : function (O) {
|
|
859
|
+
var object = toObject(O);
|
|
860
|
+
if (hasOwn(object, IE_PROTO)) return object[IE_PROTO];
|
|
861
|
+
var constructor = object.constructor;
|
|
862
|
+
if (isCallable(constructor) && object instanceof constructor) {
|
|
863
|
+
return constructor.prototype;
|
|
864
|
+
} return object instanceof $Object ? ObjectPrototype : null;
|
|
865
|
+
};
|
|
866
|
+
|
|
867
|
+
|
|
868
|
+
/***/ }),
|
|
869
|
+
|
|
870
|
+
/***/ 2796:
|
|
871
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
872
|
+
|
|
873
|
+
"use strict";
|
|
874
|
+
|
|
875
|
+
var fails = __webpack_require__(9039);
|
|
876
|
+
var isCallable = __webpack_require__(4901);
|
|
877
|
+
|
|
878
|
+
var replacement = /#|\.prototype\./;
|
|
879
|
+
|
|
880
|
+
var isForced = function (feature, detection) {
|
|
881
|
+
var value = data[normalize(feature)];
|
|
882
|
+
return value === POLYFILL ? true
|
|
883
|
+
: value === NATIVE ? false
|
|
884
|
+
: isCallable(detection) ? fails(detection)
|
|
885
|
+
: !!detection;
|
|
886
|
+
};
|
|
887
|
+
|
|
888
|
+
var normalize = isForced.normalize = function (string) {
|
|
889
|
+
return String(string).replace(replacement, '.').toLowerCase();
|
|
890
|
+
};
|
|
891
|
+
|
|
892
|
+
var data = isForced.data = {};
|
|
893
|
+
var NATIVE = isForced.NATIVE = 'N';
|
|
894
|
+
var POLYFILL = isForced.POLYFILL = 'P';
|
|
895
|
+
|
|
896
|
+
module.exports = isForced;
|
|
897
|
+
|
|
898
|
+
|
|
899
|
+
/***/ }),
|
|
900
|
+
|
|
901
|
+
/***/ 2839:
|
|
902
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
903
|
+
|
|
904
|
+
"use strict";
|
|
905
|
+
|
|
906
|
+
var globalThis = __webpack_require__(4576);
|
|
907
|
+
|
|
908
|
+
var navigator = globalThis.navigator;
|
|
909
|
+
var userAgent = navigator && navigator.userAgent;
|
|
910
|
+
|
|
911
|
+
module.exports = userAgent ? String(userAgent) : '';
|
|
912
|
+
|
|
913
|
+
|
|
914
|
+
/***/ }),
|
|
915
|
+
|
|
916
|
+
/***/ 3238:
|
|
917
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
918
|
+
|
|
919
|
+
"use strict";
|
|
920
|
+
|
|
921
|
+
var globalThis = __webpack_require__(4576);
|
|
922
|
+
var NATIVE_ARRAY_BUFFER = __webpack_require__(7811);
|
|
923
|
+
var arrayBufferByteLength = __webpack_require__(7394);
|
|
924
|
+
|
|
925
|
+
var DataView = globalThis.DataView;
|
|
926
|
+
|
|
927
|
+
module.exports = function (O) {
|
|
928
|
+
if (!NATIVE_ARRAY_BUFFER || arrayBufferByteLength(O) !== 0) return false;
|
|
929
|
+
try {
|
|
930
|
+
// eslint-disable-next-line no-new -- thrower
|
|
931
|
+
new DataView(O);
|
|
932
|
+
return false;
|
|
933
|
+
} catch (error) {
|
|
934
|
+
return true;
|
|
935
|
+
}
|
|
936
|
+
};
|
|
937
|
+
|
|
938
|
+
|
|
939
|
+
/***/ }),
|
|
940
|
+
|
|
941
|
+
/***/ 3392:
|
|
942
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
943
|
+
|
|
944
|
+
"use strict";
|
|
945
|
+
|
|
946
|
+
var uncurryThis = __webpack_require__(9504);
|
|
947
|
+
|
|
948
|
+
var id = 0;
|
|
949
|
+
var postfix = Math.random();
|
|
950
|
+
var toString = uncurryThis(1.1.toString);
|
|
951
|
+
|
|
952
|
+
module.exports = function (key) {
|
|
953
|
+
return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36);
|
|
954
|
+
};
|
|
955
|
+
|
|
956
|
+
|
|
957
|
+
/***/ }),
|
|
958
|
+
|
|
959
|
+
/***/ 3440:
|
|
960
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
961
|
+
|
|
962
|
+
"use strict";
|
|
963
|
+
|
|
964
|
+
var aSet = __webpack_require__(7080);
|
|
965
|
+
var SetHelpers = __webpack_require__(4402);
|
|
966
|
+
var clone = __webpack_require__(9286);
|
|
967
|
+
var size = __webpack_require__(5170);
|
|
968
|
+
var getSetRecord = __webpack_require__(3789);
|
|
969
|
+
var iterateSet = __webpack_require__(8469);
|
|
970
|
+
var iterateSimple = __webpack_require__(507);
|
|
971
|
+
|
|
972
|
+
var has = SetHelpers.has;
|
|
973
|
+
var remove = SetHelpers.remove;
|
|
974
|
+
|
|
975
|
+
// `Set.prototype.difference` method
|
|
976
|
+
// https://tc39.es/ecma262/#sec-set.prototype.difference
|
|
977
|
+
module.exports = function difference(other) {
|
|
978
|
+
var O = aSet(this);
|
|
979
|
+
var otherRec = getSetRecord(other);
|
|
980
|
+
var result = clone(O);
|
|
981
|
+
if (size(O) <= otherRec.size) iterateSet(O, function (e) {
|
|
982
|
+
if (otherRec.includes(e)) remove(result, e);
|
|
983
|
+
});
|
|
984
|
+
else iterateSimple(otherRec.getIterator(), function (e) {
|
|
985
|
+
if (has(result, e)) remove(result, e);
|
|
986
|
+
});
|
|
987
|
+
return result;
|
|
988
|
+
};
|
|
989
|
+
|
|
990
|
+
|
|
991
|
+
/***/ }),
|
|
992
|
+
|
|
993
|
+
/***/ 3650:
|
|
994
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
995
|
+
|
|
996
|
+
"use strict";
|
|
997
|
+
|
|
998
|
+
var aSet = __webpack_require__(7080);
|
|
999
|
+
var SetHelpers = __webpack_require__(4402);
|
|
1000
|
+
var clone = __webpack_require__(9286);
|
|
1001
|
+
var getSetRecord = __webpack_require__(3789);
|
|
1002
|
+
var iterateSimple = __webpack_require__(507);
|
|
1003
|
+
|
|
1004
|
+
var add = SetHelpers.add;
|
|
1005
|
+
var has = SetHelpers.has;
|
|
1006
|
+
var remove = SetHelpers.remove;
|
|
1007
|
+
|
|
1008
|
+
// `Set.prototype.symmetricDifference` method
|
|
1009
|
+
// https://tc39.es/ecma262/#sec-set.prototype.symmetricdifference
|
|
1010
|
+
module.exports = function symmetricDifference(other) {
|
|
1011
|
+
var O = aSet(this);
|
|
1012
|
+
var keysIter = getSetRecord(other).getIterator();
|
|
1013
|
+
var result = clone(O);
|
|
1014
|
+
iterateSimple(keysIter, function (e) {
|
|
1015
|
+
if (has(O, e)) remove(result, e);
|
|
1016
|
+
else add(result, e);
|
|
1017
|
+
});
|
|
1018
|
+
return result;
|
|
1019
|
+
};
|
|
1020
|
+
|
|
1021
|
+
|
|
1022
|
+
/***/ }),
|
|
1023
|
+
|
|
1024
|
+
/***/ 3706:
|
|
1025
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1026
|
+
|
|
1027
|
+
"use strict";
|
|
1028
|
+
|
|
1029
|
+
var uncurryThis = __webpack_require__(9504);
|
|
1030
|
+
var isCallable = __webpack_require__(4901);
|
|
1031
|
+
var store = __webpack_require__(7629);
|
|
1032
|
+
|
|
1033
|
+
var functionToString = uncurryThis(Function.toString);
|
|
1034
|
+
|
|
1035
|
+
// this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
|
|
1036
|
+
if (!isCallable(store.inspectSource)) {
|
|
1037
|
+
store.inspectSource = function (it) {
|
|
1038
|
+
return functionToString(it);
|
|
1039
|
+
};
|
|
1040
|
+
}
|
|
1041
|
+
|
|
1042
|
+
module.exports = store.inspectSource;
|
|
1043
|
+
|
|
1044
|
+
|
|
1045
|
+
/***/ }),
|
|
1046
|
+
|
|
1047
|
+
/***/ 3717:
|
|
1048
|
+
/***/ (function(__unused_webpack_module, exports) {
|
|
1049
|
+
|
|
1050
|
+
"use strict";
|
|
1051
|
+
|
|
1052
|
+
// eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
|
|
1053
|
+
exports.f = Object.getOwnPropertySymbols;
|
|
1054
|
+
|
|
1055
|
+
|
|
1056
|
+
/***/ }),
|
|
1057
|
+
|
|
1058
|
+
/***/ 3724:
|
|
1059
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1060
|
+
|
|
1061
|
+
"use strict";
|
|
1062
|
+
|
|
1063
|
+
var fails = __webpack_require__(9039);
|
|
1064
|
+
|
|
1065
|
+
// Detect IE8's incomplete defineProperty implementation
|
|
1066
|
+
module.exports = !fails(function () {
|
|
1067
|
+
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
1068
|
+
return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] !== 7;
|
|
1069
|
+
});
|
|
1070
|
+
|
|
1071
|
+
|
|
1072
|
+
/***/ }),
|
|
1073
|
+
|
|
1074
|
+
/***/ 3789:
|
|
1075
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1076
|
+
|
|
1077
|
+
"use strict";
|
|
1078
|
+
|
|
1079
|
+
var aCallable = __webpack_require__(9306);
|
|
1080
|
+
var anObject = __webpack_require__(932);
|
|
1081
|
+
var call = __webpack_require__(9565);
|
|
1082
|
+
var toIntegerOrInfinity = __webpack_require__(1291);
|
|
1083
|
+
var getIteratorDirect = __webpack_require__(1767);
|
|
1084
|
+
|
|
1085
|
+
var INVALID_SIZE = 'Invalid size';
|
|
1086
|
+
var $RangeError = RangeError;
|
|
1087
|
+
var $TypeError = TypeError;
|
|
1088
|
+
var max = Math.max;
|
|
1089
|
+
|
|
1090
|
+
var SetRecord = function (set, intSize) {
|
|
1091
|
+
this.set = set;
|
|
1092
|
+
this.size = max(intSize, 0);
|
|
1093
|
+
this.has = aCallable(set.has);
|
|
1094
|
+
this.keys = aCallable(set.keys);
|
|
1095
|
+
};
|
|
1096
|
+
|
|
1097
|
+
SetRecord.prototype = {
|
|
1098
|
+
getIterator: function () {
|
|
1099
|
+
return getIteratorDirect(anObject(call(this.keys, this.set)));
|
|
1100
|
+
},
|
|
1101
|
+
includes: function (it) {
|
|
1102
|
+
return call(this.has, this.set, it);
|
|
1103
|
+
}
|
|
1104
|
+
};
|
|
1105
|
+
|
|
1106
|
+
// `GetSetRecord` abstract operation
|
|
1107
|
+
// https://tc39.es/proposal-set-methods/#sec-getsetrecord
|
|
1108
|
+
module.exports = function (obj) {
|
|
1109
|
+
anObject(obj);
|
|
1110
|
+
var numSize = +obj.size;
|
|
1111
|
+
// NOTE: If size is undefined, then numSize will be NaN
|
|
1112
|
+
// eslint-disable-next-line no-self-compare -- NaN check
|
|
1113
|
+
if (numSize !== numSize) throw new $TypeError(INVALID_SIZE);
|
|
1114
|
+
var intSize = toIntegerOrInfinity(numSize);
|
|
1115
|
+
if (intSize < 0) throw new $RangeError(INVALID_SIZE);
|
|
1116
|
+
return new SetRecord(obj, intSize);
|
|
1117
|
+
};
|
|
1118
|
+
|
|
1119
|
+
|
|
1120
|
+
/***/ }),
|
|
1121
|
+
|
|
1122
|
+
/***/ 3838:
|
|
1123
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1124
|
+
|
|
1125
|
+
"use strict";
|
|
1126
|
+
|
|
1127
|
+
var aSet = __webpack_require__(7080);
|
|
1128
|
+
var size = __webpack_require__(5170);
|
|
1129
|
+
var iterate = __webpack_require__(8469);
|
|
1130
|
+
var getSetRecord = __webpack_require__(3789);
|
|
1131
|
+
|
|
1132
|
+
// `Set.prototype.isSubsetOf` method
|
|
1133
|
+
// https://tc39.es/ecma262/#sec-set.prototype.issubsetof
|
|
1134
|
+
module.exports = function isSubsetOf(other) {
|
|
1135
|
+
var O = aSet(this);
|
|
1136
|
+
var otherRec = getSetRecord(other);
|
|
1137
|
+
if (size(O) > otherRec.size) return false;
|
|
1138
|
+
return iterate(O, function (e) {
|
|
1139
|
+
if (!otherRec.includes(e)) return false;
|
|
1140
|
+
}, true) !== false;
|
|
1141
|
+
};
|
|
1142
|
+
|
|
1143
|
+
|
|
1144
|
+
/***/ }),
|
|
1145
|
+
|
|
1146
|
+
/***/ 3853:
|
|
1147
|
+
/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
|
|
1148
|
+
|
|
1149
|
+
"use strict";
|
|
1150
|
+
|
|
1151
|
+
var $ = __webpack_require__(6518);
|
|
1152
|
+
var isDisjointFrom = __webpack_require__(4449);
|
|
1153
|
+
var setMethodAcceptSetLike = __webpack_require__(4916);
|
|
1154
|
+
|
|
1155
|
+
var INCORRECT = !setMethodAcceptSetLike('isDisjointFrom', function (result) {
|
|
1156
|
+
return !result;
|
|
1157
|
+
});
|
|
1158
|
+
|
|
1159
|
+
// `Set.prototype.isDisjointFrom` method
|
|
1160
|
+
// https://tc39.es/ecma262/#sec-set.prototype.isdisjointfrom
|
|
1161
|
+
$({ target: 'Set', proto: true, real: true, forced: INCORRECT }, {
|
|
1162
|
+
isDisjointFrom: isDisjointFrom
|
|
1163
|
+
});
|
|
1164
|
+
|
|
1165
|
+
|
|
1166
|
+
/***/ }),
|
|
1167
|
+
|
|
1168
|
+
/***/ 4055:
|
|
1169
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1170
|
+
|
|
1171
|
+
"use strict";
|
|
1172
|
+
|
|
1173
|
+
var globalThis = __webpack_require__(4576);
|
|
1174
|
+
var isObject = __webpack_require__(34);
|
|
1175
|
+
|
|
1176
|
+
var document = globalThis.document;
|
|
1177
|
+
// typeof document.createElement is 'object' in old IE
|
|
1178
|
+
var EXISTS = isObject(document) && isObject(document.createElement);
|
|
1179
|
+
|
|
1180
|
+
module.exports = function (it) {
|
|
1181
|
+
return EXISTS ? document.createElement(it) : {};
|
|
1182
|
+
};
|
|
1183
|
+
|
|
1184
|
+
|
|
1185
|
+
/***/ }),
|
|
1186
|
+
|
|
1187
|
+
/***/ 4114:
|
|
1188
|
+
/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
|
|
1189
|
+
|
|
1190
|
+
"use strict";
|
|
1191
|
+
|
|
1192
|
+
var $ = __webpack_require__(6518);
|
|
1193
|
+
var toObject = __webpack_require__(8981);
|
|
1194
|
+
var lengthOfArrayLike = __webpack_require__(6198);
|
|
1195
|
+
var setArrayLength = __webpack_require__(4527);
|
|
1196
|
+
var doesNotExceedSafeInteger = __webpack_require__(6837);
|
|
1197
|
+
var fails = __webpack_require__(9039);
|
|
1198
|
+
|
|
1199
|
+
var INCORRECT_TO_LENGTH = fails(function () {
|
|
1200
|
+
return [].push.call({ length: 0x100000000 }, 1) !== 4294967297;
|
|
1201
|
+
});
|
|
1202
|
+
|
|
1203
|
+
// V8 <= 121 and Safari <= 15.4; FF < 23 throws InternalError
|
|
1204
|
+
// https://bugs.chromium.org/p/v8/issues/detail?id=12681
|
|
1205
|
+
var properErrorOnNonWritableLength = function () {
|
|
1206
|
+
try {
|
|
1207
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
1208
|
+
Object.defineProperty([], 'length', { writable: false }).push();
|
|
1209
|
+
} catch (error) {
|
|
1210
|
+
return error instanceof TypeError;
|
|
1211
|
+
}
|
|
1212
|
+
};
|
|
1213
|
+
|
|
1214
|
+
var FORCED = INCORRECT_TO_LENGTH || !properErrorOnNonWritableLength();
|
|
1215
|
+
|
|
1216
|
+
// `Array.prototype.push` method
|
|
1217
|
+
// https://tc39.es/ecma262/#sec-array.prototype.push
|
|
1218
|
+
$({ target: 'Array', proto: true, arity: 1, forced: FORCED }, {
|
|
1219
|
+
// eslint-disable-next-line no-unused-vars -- required for `.length`
|
|
1220
|
+
push: function push(item) {
|
|
1221
|
+
var O = toObject(this);
|
|
1222
|
+
var len = lengthOfArrayLike(O);
|
|
1223
|
+
var argCount = arguments.length;
|
|
1224
|
+
doesNotExceedSafeInteger(len + argCount);
|
|
1225
|
+
for (var i = 0; i < argCount; i++) {
|
|
1226
|
+
O[len] = arguments[i];
|
|
1227
|
+
len++;
|
|
1228
|
+
}
|
|
1229
|
+
setArrayLength(O, len);
|
|
1230
|
+
return len;
|
|
1231
|
+
}
|
|
1232
|
+
});
|
|
1233
|
+
|
|
1234
|
+
|
|
1235
|
+
/***/ }),
|
|
1236
|
+
|
|
1237
|
+
/***/ 4117:
|
|
1238
|
+
/***/ (function(module) {
|
|
1239
|
+
|
|
1240
|
+
"use strict";
|
|
1241
|
+
|
|
1242
|
+
// we can't use just `it == null` since of `document.all` special case
|
|
1243
|
+
// https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot-aec
|
|
1244
|
+
module.exports = function (it) {
|
|
1245
|
+
return it === null || it === undefined;
|
|
1246
|
+
};
|
|
1247
|
+
|
|
1248
|
+
|
|
1249
|
+
/***/ }),
|
|
1250
|
+
|
|
1251
|
+
/***/ 4204:
|
|
1252
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1253
|
+
|
|
1254
|
+
"use strict";
|
|
1255
|
+
|
|
1256
|
+
var aSet = __webpack_require__(7080);
|
|
1257
|
+
var add = (__webpack_require__(4402).add);
|
|
1258
|
+
var clone = __webpack_require__(9286);
|
|
1259
|
+
var getSetRecord = __webpack_require__(3789);
|
|
1260
|
+
var iterateSimple = __webpack_require__(507);
|
|
1261
|
+
|
|
1262
|
+
// `Set.prototype.union` method
|
|
1263
|
+
// https://tc39.es/ecma262/#sec-set.prototype.union
|
|
1264
|
+
module.exports = function union(other) {
|
|
1265
|
+
var O = aSet(this);
|
|
1266
|
+
var keysIter = getSetRecord(other).getIterator();
|
|
1267
|
+
var result = clone(O);
|
|
1268
|
+
iterateSimple(keysIter, function (it) {
|
|
1269
|
+
add(result, it);
|
|
1270
|
+
});
|
|
1271
|
+
return result;
|
|
1272
|
+
};
|
|
1273
|
+
|
|
1274
|
+
|
|
1275
|
+
/***/ }),
|
|
1276
|
+
|
|
1277
|
+
/***/ 4209:
|
|
1278
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1279
|
+
|
|
1280
|
+
"use strict";
|
|
1281
|
+
|
|
1282
|
+
var wellKnownSymbol = __webpack_require__(8227);
|
|
1283
|
+
var Iterators = __webpack_require__(6269);
|
|
1284
|
+
|
|
1285
|
+
var ITERATOR = wellKnownSymbol('iterator');
|
|
1286
|
+
var ArrayPrototype = Array.prototype;
|
|
1287
|
+
|
|
1288
|
+
// check on default Array iterator
|
|
1289
|
+
module.exports = function (it) {
|
|
1290
|
+
return it !== undefined && (Iterators.Array === it || ArrayPrototype[ITERATOR] === it);
|
|
1291
|
+
};
|
|
1292
|
+
|
|
1293
|
+
|
|
1294
|
+
/***/ }),
|
|
1295
|
+
|
|
1296
|
+
/***/ 4215:
|
|
1297
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1298
|
+
|
|
1299
|
+
"use strict";
|
|
1300
|
+
|
|
1301
|
+
/* global Bun, Deno -- detection */
|
|
1302
|
+
var globalThis = __webpack_require__(4576);
|
|
1303
|
+
var userAgent = __webpack_require__(2839);
|
|
1304
|
+
var classof = __webpack_require__(2195);
|
|
1305
|
+
|
|
1306
|
+
var userAgentStartsWith = function (string) {
|
|
1307
|
+
return userAgent.slice(0, string.length) === string;
|
|
1308
|
+
};
|
|
1309
|
+
|
|
1310
|
+
module.exports = (function () {
|
|
1311
|
+
if (userAgentStartsWith('Bun/')) return 'BUN';
|
|
1312
|
+
if (userAgentStartsWith('Cloudflare-Workers')) return 'CLOUDFLARE';
|
|
1313
|
+
if (userAgentStartsWith('Deno/')) return 'DENO';
|
|
1314
|
+
if (userAgentStartsWith('Node.js/')) return 'NODE';
|
|
1315
|
+
if (globalThis.Bun && typeof Bun.version == 'string') return 'BUN';
|
|
1316
|
+
if (globalThis.Deno && typeof Deno.version == 'object') return 'DENO';
|
|
1317
|
+
if (classof(globalThis.process) === 'process') return 'NODE';
|
|
1318
|
+
if (globalThis.window && globalThis.document) return 'BROWSER';
|
|
1319
|
+
return 'REST';
|
|
1320
|
+
})();
|
|
1321
|
+
|
|
1322
|
+
|
|
1323
|
+
/***/ }),
|
|
1324
|
+
|
|
1325
|
+
/***/ 4270:
|
|
1326
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1327
|
+
|
|
1328
|
+
"use strict";
|
|
1329
|
+
|
|
1330
|
+
var call = __webpack_require__(9565);
|
|
1331
|
+
var isCallable = __webpack_require__(4901);
|
|
1332
|
+
var isObject = __webpack_require__(34);
|
|
1333
|
+
|
|
1334
|
+
var $TypeError = TypeError;
|
|
1335
|
+
|
|
1336
|
+
// `OrdinaryToPrimitive` abstract operation
|
|
1337
|
+
// https://tc39.es/ecma262/#sec-ordinarytoprimitive
|
|
1338
|
+
module.exports = function (input, pref) {
|
|
1339
|
+
var fn, val;
|
|
1340
|
+
if (pref === 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;
|
|
1341
|
+
if (isCallable(fn = input.valueOf) && !isObject(val = call(fn, input))) return val;
|
|
1342
|
+
if (pref !== 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;
|
|
1343
|
+
throw new $TypeError("Can't convert object to primitive value");
|
|
1344
|
+
};
|
|
1345
|
+
|
|
1346
|
+
|
|
1347
|
+
/***/ }),
|
|
1348
|
+
|
|
1349
|
+
/***/ 4376:
|
|
1350
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1351
|
+
|
|
1352
|
+
"use strict";
|
|
1353
|
+
|
|
1354
|
+
var classof = __webpack_require__(2195);
|
|
1355
|
+
|
|
1356
|
+
// `IsArray` abstract operation
|
|
1357
|
+
// https://tc39.es/ecma262/#sec-isarray
|
|
1358
|
+
// eslint-disable-next-line es/no-array-isarray -- safe
|
|
1359
|
+
module.exports = Array.isArray || function isArray(argument) {
|
|
1360
|
+
return classof(argument) === 'Array';
|
|
1361
|
+
};
|
|
1362
|
+
|
|
1363
|
+
|
|
1364
|
+
/***/ }),
|
|
1365
|
+
|
|
1366
|
+
/***/ 4402:
|
|
1367
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1368
|
+
|
|
1369
|
+
"use strict";
|
|
1370
|
+
|
|
1371
|
+
var uncurryThis = __webpack_require__(9504);
|
|
1372
|
+
|
|
1373
|
+
// eslint-disable-next-line es/no-set -- safe
|
|
1374
|
+
var SetPrototype = Set.prototype;
|
|
1375
|
+
|
|
1376
|
+
module.exports = {
|
|
1377
|
+
// eslint-disable-next-line es/no-set -- safe
|
|
1378
|
+
Set: Set,
|
|
1379
|
+
add: uncurryThis(SetPrototype.add),
|
|
1380
|
+
has: uncurryThis(SetPrototype.has),
|
|
1381
|
+
remove: uncurryThis(SetPrototype['delete']),
|
|
1382
|
+
proto: SetPrototype
|
|
1383
|
+
};
|
|
1384
|
+
|
|
1385
|
+
|
|
1386
|
+
/***/ }),
|
|
1387
|
+
|
|
1388
|
+
/***/ 4449:
|
|
1389
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1390
|
+
|
|
1391
|
+
"use strict";
|
|
1392
|
+
|
|
1393
|
+
var aSet = __webpack_require__(7080);
|
|
1394
|
+
var has = (__webpack_require__(4402).has);
|
|
1395
|
+
var size = __webpack_require__(5170);
|
|
1396
|
+
var getSetRecord = __webpack_require__(3789);
|
|
1397
|
+
var iterateSet = __webpack_require__(8469);
|
|
1398
|
+
var iterateSimple = __webpack_require__(507);
|
|
1399
|
+
var iteratorClose = __webpack_require__(9539);
|
|
1400
|
+
|
|
1401
|
+
// `Set.prototype.isDisjointFrom` method
|
|
1402
|
+
// https://tc39.es/ecma262/#sec-set.prototype.isdisjointfrom
|
|
1403
|
+
module.exports = function isDisjointFrom(other) {
|
|
1404
|
+
var O = aSet(this);
|
|
1405
|
+
var otherRec = getSetRecord(other);
|
|
1406
|
+
if (size(O) <= otherRec.size) return iterateSet(O, function (e) {
|
|
1407
|
+
if (otherRec.includes(e)) return false;
|
|
1408
|
+
}, true) !== false;
|
|
1409
|
+
var iterator = otherRec.getIterator();
|
|
1410
|
+
return iterateSimple(iterator, function (e) {
|
|
1411
|
+
if (has(O, e)) return iteratorClose(iterator, 'normal', false);
|
|
1412
|
+
}) !== false;
|
|
1413
|
+
};
|
|
1414
|
+
|
|
1415
|
+
|
|
1416
|
+
/***/ }),
|
|
1417
|
+
|
|
1418
|
+
/***/ 4483:
|
|
1419
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1420
|
+
|
|
1421
|
+
"use strict";
|
|
1422
|
+
|
|
1423
|
+
var globalThis = __webpack_require__(4576);
|
|
1424
|
+
var getBuiltInNodeModule = __webpack_require__(9429);
|
|
1425
|
+
var PROPER_STRUCTURED_CLONE_TRANSFER = __webpack_require__(1548);
|
|
1426
|
+
|
|
1427
|
+
var structuredClone = globalThis.structuredClone;
|
|
1428
|
+
var $ArrayBuffer = globalThis.ArrayBuffer;
|
|
1429
|
+
var $MessageChannel = globalThis.MessageChannel;
|
|
1430
|
+
var detach = false;
|
|
1431
|
+
var WorkerThreads, channel, buffer, $detach;
|
|
1432
|
+
|
|
1433
|
+
if (PROPER_STRUCTURED_CLONE_TRANSFER) {
|
|
1434
|
+
detach = function (transferable) {
|
|
1435
|
+
structuredClone(transferable, { transfer: [transferable] });
|
|
1436
|
+
};
|
|
1437
|
+
} else if ($ArrayBuffer) try {
|
|
1438
|
+
if (!$MessageChannel) {
|
|
1439
|
+
WorkerThreads = getBuiltInNodeModule('worker_threads');
|
|
1440
|
+
if (WorkerThreads) $MessageChannel = WorkerThreads.MessageChannel;
|
|
1441
|
+
}
|
|
1442
|
+
|
|
1443
|
+
if ($MessageChannel) {
|
|
1444
|
+
channel = new $MessageChannel();
|
|
1445
|
+
buffer = new $ArrayBuffer(2);
|
|
1446
|
+
|
|
1447
|
+
$detach = function (transferable) {
|
|
1448
|
+
channel.port1.postMessage(null, [transferable]);
|
|
1449
|
+
};
|
|
1450
|
+
|
|
1451
|
+
if (buffer.byteLength === 2) {
|
|
1452
|
+
$detach(buffer);
|
|
1453
|
+
if (buffer.byteLength === 0) detach = $detach;
|
|
1454
|
+
}
|
|
1455
|
+
}
|
|
1456
|
+
} catch (error) { /* empty */ }
|
|
1457
|
+
|
|
1458
|
+
module.exports = detach;
|
|
1459
|
+
|
|
1460
|
+
|
|
1461
|
+
/***/ }),
|
|
1462
|
+
|
|
1463
|
+
/***/ 4495:
|
|
1464
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1465
|
+
|
|
1466
|
+
"use strict";
|
|
1467
|
+
|
|
1468
|
+
/* eslint-disable es/no-symbol -- required for testing */
|
|
1469
|
+
var V8_VERSION = __webpack_require__(9519);
|
|
1470
|
+
var fails = __webpack_require__(9039);
|
|
1471
|
+
var globalThis = __webpack_require__(4576);
|
|
1472
|
+
|
|
1473
|
+
var $String = globalThis.String;
|
|
1474
|
+
|
|
1475
|
+
// eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
|
|
1476
|
+
module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
|
|
1477
|
+
var symbol = Symbol('symbol detection');
|
|
1478
|
+
// Chrome 38 Symbol has incorrect toString conversion
|
|
1479
|
+
// `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
|
|
1480
|
+
// nb: Do not call `String` directly to avoid this being optimized out to `symbol+''` which will,
|
|
1481
|
+
// of course, fail.
|
|
1482
|
+
return !$String(symbol) || !(Object(symbol) instanceof Symbol) ||
|
|
1483
|
+
// Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
|
|
1484
|
+
!Symbol.sham && V8_VERSION && V8_VERSION < 41;
|
|
1485
|
+
});
|
|
1486
|
+
|
|
1487
|
+
|
|
1488
|
+
/***/ }),
|
|
1489
|
+
|
|
1490
|
+
/***/ 4527:
|
|
1491
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1492
|
+
|
|
1493
|
+
"use strict";
|
|
1494
|
+
|
|
1495
|
+
var DESCRIPTORS = __webpack_require__(3724);
|
|
1496
|
+
var isArray = __webpack_require__(4376);
|
|
1497
|
+
|
|
1498
|
+
var $TypeError = TypeError;
|
|
1499
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
1500
|
+
var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
1501
|
+
|
|
1502
|
+
// Safari < 13 does not throw an error in this case
|
|
1503
|
+
var SILENT_ON_NON_WRITABLE_LENGTH_SET = DESCRIPTORS && !function () {
|
|
1504
|
+
// makes no sense without proper strict mode support
|
|
1505
|
+
if (this !== undefined) return true;
|
|
1506
|
+
try {
|
|
1507
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
1508
|
+
Object.defineProperty([], 'length', { writable: false }).length = 1;
|
|
1509
|
+
} catch (error) {
|
|
1510
|
+
return error instanceof TypeError;
|
|
1511
|
+
}
|
|
1512
|
+
}();
|
|
1513
|
+
|
|
1514
|
+
module.exports = SILENT_ON_NON_WRITABLE_LENGTH_SET ? function (O, length) {
|
|
1515
|
+
if (isArray(O) && !getOwnPropertyDescriptor(O, 'length').writable) {
|
|
1516
|
+
throw new $TypeError('Cannot set read only .length');
|
|
1517
|
+
} return O.length = length;
|
|
1518
|
+
} : function (O, length) {
|
|
1519
|
+
return O.length = length;
|
|
1520
|
+
};
|
|
1521
|
+
|
|
1522
|
+
|
|
1523
|
+
/***/ }),
|
|
1524
|
+
|
|
1525
|
+
/***/ 4549:
|
|
1526
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1527
|
+
|
|
1528
|
+
"use strict";
|
|
1529
|
+
|
|
1530
|
+
var globalThis = __webpack_require__(4576);
|
|
1531
|
+
|
|
1532
|
+
// https://github.com/tc39/ecma262/pull/3467
|
|
1533
|
+
module.exports = function (METHOD_NAME, ExpectedError) {
|
|
1534
|
+
var Iterator = globalThis.Iterator;
|
|
1535
|
+
var IteratorPrototype = Iterator && Iterator.prototype;
|
|
1536
|
+
var method = IteratorPrototype && IteratorPrototype[METHOD_NAME];
|
|
1537
|
+
|
|
1538
|
+
var CLOSED = false;
|
|
1539
|
+
|
|
1540
|
+
if (method) try {
|
|
1541
|
+
method.call({
|
|
1542
|
+
next: function () { return { done: true }; },
|
|
1543
|
+
'return': function () { CLOSED = true; }
|
|
1544
|
+
}, -1);
|
|
1545
|
+
} catch (error) {
|
|
1546
|
+
// https://bugs.webkit.org/show_bug.cgi?id=291195
|
|
1547
|
+
if (!(error instanceof ExpectedError)) CLOSED = false;
|
|
1548
|
+
}
|
|
1549
|
+
|
|
1550
|
+
if (!CLOSED) return method;
|
|
1551
|
+
};
|
|
1552
|
+
|
|
1553
|
+
|
|
1554
|
+
/***/ }),
|
|
1555
|
+
|
|
1556
|
+
/***/ 4576:
|
|
1557
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1558
|
+
|
|
1559
|
+
"use strict";
|
|
1560
|
+
|
|
1561
|
+
var check = function (it) {
|
|
1562
|
+
return it && it.Math === Math && it;
|
|
1563
|
+
};
|
|
1564
|
+
|
|
1565
|
+
// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
|
|
1566
|
+
module.exports =
|
|
1567
|
+
// eslint-disable-next-line es/no-global-this -- safe
|
|
1568
|
+
check(typeof globalThis == 'object' && globalThis) ||
|
|
1569
|
+
check(typeof window == 'object' && window) ||
|
|
1570
|
+
// eslint-disable-next-line no-restricted-globals -- safe
|
|
1571
|
+
check(typeof self == 'object' && self) ||
|
|
1572
|
+
check(typeof __webpack_require__.g == 'object' && __webpack_require__.g) ||
|
|
1573
|
+
check(typeof this == 'object' && this) ||
|
|
1574
|
+
// eslint-disable-next-line no-new-func -- fallback
|
|
1575
|
+
(function () { return this; })() || Function('return this')();
|
|
1576
|
+
|
|
1577
|
+
|
|
1578
|
+
/***/ }),
|
|
1579
|
+
|
|
1580
|
+
/***/ 4659:
|
|
1581
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1582
|
+
|
|
1583
|
+
"use strict";
|
|
1584
|
+
|
|
1585
|
+
var DESCRIPTORS = __webpack_require__(3724);
|
|
1586
|
+
var definePropertyModule = __webpack_require__(4913);
|
|
1587
|
+
var createPropertyDescriptor = __webpack_require__(6980);
|
|
1588
|
+
|
|
1589
|
+
module.exports = function (object, key, value) {
|
|
1590
|
+
if (DESCRIPTORS) definePropertyModule.f(object, key, createPropertyDescriptor(0, value));
|
|
1591
|
+
else object[key] = value;
|
|
1592
|
+
};
|
|
1593
|
+
|
|
1594
|
+
|
|
1595
|
+
/***/ }),
|
|
1596
|
+
|
|
1597
|
+
/***/ 4901:
|
|
1598
|
+
/***/ (function(module) {
|
|
1599
|
+
|
|
1600
|
+
"use strict";
|
|
1601
|
+
|
|
1602
|
+
// https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
|
|
1603
|
+
var documentAll = typeof document == 'object' && document.all;
|
|
1604
|
+
|
|
1605
|
+
// `IsCallable` abstract operation
|
|
1606
|
+
// https://tc39.es/ecma262/#sec-iscallable
|
|
1607
|
+
// eslint-disable-next-line unicorn/no-typeof-undefined -- required for testing
|
|
1608
|
+
module.exports = typeof documentAll == 'undefined' && documentAll !== undefined ? function (argument) {
|
|
1609
|
+
return typeof argument == 'function' || argument === documentAll;
|
|
1610
|
+
} : function (argument) {
|
|
1611
|
+
return typeof argument == 'function';
|
|
1612
|
+
};
|
|
1613
|
+
|
|
1614
|
+
|
|
1615
|
+
/***/ }),
|
|
1616
|
+
|
|
1617
|
+
/***/ 4913:
|
|
1618
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
1619
|
+
|
|
1620
|
+
"use strict";
|
|
1621
|
+
|
|
1622
|
+
var DESCRIPTORS = __webpack_require__(3724);
|
|
1623
|
+
var IE8_DOM_DEFINE = __webpack_require__(5917);
|
|
1624
|
+
var V8_PROTOTYPE_DEFINE_BUG = __webpack_require__(8686);
|
|
1625
|
+
var anObject = __webpack_require__(932);
|
|
1626
|
+
var toPropertyKey = __webpack_require__(6969);
|
|
1627
|
+
|
|
1628
|
+
var $TypeError = TypeError;
|
|
1629
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
1630
|
+
var $defineProperty = Object.defineProperty;
|
|
1631
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
1632
|
+
var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
1633
|
+
var ENUMERABLE = 'enumerable';
|
|
1634
|
+
var CONFIGURABLE = 'configurable';
|
|
1635
|
+
var WRITABLE = 'writable';
|
|
1636
|
+
|
|
1637
|
+
// `Object.defineProperty` method
|
|
1638
|
+
// https://tc39.es/ecma262/#sec-object.defineproperty
|
|
1639
|
+
exports.f = DESCRIPTORS ? V8_PROTOTYPE_DEFINE_BUG ? function defineProperty(O, P, Attributes) {
|
|
1640
|
+
anObject(O);
|
|
1641
|
+
P = toPropertyKey(P);
|
|
1642
|
+
anObject(Attributes);
|
|
1643
|
+
if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {
|
|
1644
|
+
var current = $getOwnPropertyDescriptor(O, P);
|
|
1645
|
+
if (current && current[WRITABLE]) {
|
|
1646
|
+
O[P] = Attributes.value;
|
|
1647
|
+
Attributes = {
|
|
1648
|
+
configurable: CONFIGURABLE in Attributes ? Attributes[CONFIGURABLE] : current[CONFIGURABLE],
|
|
1649
|
+
enumerable: ENUMERABLE in Attributes ? Attributes[ENUMERABLE] : current[ENUMERABLE],
|
|
1650
|
+
writable: false
|
|
1651
|
+
};
|
|
1652
|
+
}
|
|
1653
|
+
} return $defineProperty(O, P, Attributes);
|
|
1654
|
+
} : $defineProperty : function defineProperty(O, P, Attributes) {
|
|
1655
|
+
anObject(O);
|
|
1656
|
+
P = toPropertyKey(P);
|
|
1657
|
+
anObject(Attributes);
|
|
1658
|
+
if (IE8_DOM_DEFINE) try {
|
|
1659
|
+
return $defineProperty(O, P, Attributes);
|
|
1660
|
+
} catch (error) { /* empty */ }
|
|
1661
|
+
if ('get' in Attributes || 'set' in Attributes) throw new $TypeError('Accessors not supported');
|
|
1662
|
+
if ('value' in Attributes) O[P] = Attributes.value;
|
|
1663
|
+
return O;
|
|
1664
|
+
};
|
|
1665
|
+
|
|
1666
|
+
|
|
1667
|
+
/***/ }),
|
|
1668
|
+
|
|
1669
|
+
/***/ 4916:
|
|
1670
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1671
|
+
|
|
1672
|
+
"use strict";
|
|
1673
|
+
|
|
1674
|
+
var getBuiltIn = __webpack_require__(7751);
|
|
1675
|
+
|
|
1676
|
+
var createSetLike = function (size) {
|
|
1677
|
+
return {
|
|
1678
|
+
size: size,
|
|
1679
|
+
has: function () {
|
|
1680
|
+
return false;
|
|
1681
|
+
},
|
|
1682
|
+
keys: function () {
|
|
1683
|
+
return {
|
|
1684
|
+
next: function () {
|
|
1685
|
+
return { done: true };
|
|
1686
|
+
}
|
|
1687
|
+
};
|
|
1688
|
+
}
|
|
1689
|
+
};
|
|
1690
|
+
};
|
|
1691
|
+
|
|
1692
|
+
var createSetLikeWithInfinitySize = function (size) {
|
|
1693
|
+
return {
|
|
1694
|
+
size: size,
|
|
1695
|
+
has: function () {
|
|
1696
|
+
return true;
|
|
1697
|
+
},
|
|
1698
|
+
keys: function () {
|
|
1699
|
+
throw new Error('e');
|
|
1700
|
+
}
|
|
1701
|
+
};
|
|
1702
|
+
};
|
|
1703
|
+
|
|
1704
|
+
module.exports = function (name, callback) {
|
|
1705
|
+
var Set = getBuiltIn('Set');
|
|
1706
|
+
try {
|
|
1707
|
+
new Set()[name](createSetLike(0));
|
|
1708
|
+
try {
|
|
1709
|
+
// late spec change, early WebKit ~ Safari 17 implementation does not pass it
|
|
1710
|
+
// https://github.com/tc39/proposal-set-methods/pull/88
|
|
1711
|
+
// also covered engines with
|
|
1712
|
+
// https://bugs.webkit.org/show_bug.cgi?id=272679
|
|
1713
|
+
new Set()[name](createSetLike(-1));
|
|
1714
|
+
return false;
|
|
1715
|
+
} catch (error2) {
|
|
1716
|
+
if (!callback) return true;
|
|
1717
|
+
// early V8 implementation bug
|
|
1718
|
+
// https://issues.chromium.org/issues/351332634
|
|
1719
|
+
try {
|
|
1720
|
+
new Set()[name](createSetLikeWithInfinitySize(-Infinity));
|
|
1721
|
+
return false;
|
|
1722
|
+
} catch (error) {
|
|
1723
|
+
var set = new Set([1, 2]);
|
|
1724
|
+
return callback(set[name](createSetLikeWithInfinitySize(Infinity)));
|
|
1725
|
+
}
|
|
1726
|
+
}
|
|
1727
|
+
} catch (error) {
|
|
1728
|
+
return false;
|
|
1729
|
+
}
|
|
1730
|
+
};
|
|
1731
|
+
|
|
1732
|
+
|
|
1733
|
+
/***/ }),
|
|
1734
|
+
|
|
1735
|
+
/***/ 5024:
|
|
1736
|
+
/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
|
|
1737
|
+
|
|
1738
|
+
"use strict";
|
|
1739
|
+
|
|
1740
|
+
var $ = __webpack_require__(6518);
|
|
1741
|
+
var symmetricDifference = __webpack_require__(3650);
|
|
1742
|
+
var setMethodGetKeysBeforeCloning = __webpack_require__(9835);
|
|
1743
|
+
var setMethodAcceptSetLike = __webpack_require__(4916);
|
|
1744
|
+
|
|
1745
|
+
var FORCED = !setMethodAcceptSetLike('symmetricDifference') || !setMethodGetKeysBeforeCloning('symmetricDifference');
|
|
1746
|
+
|
|
1747
|
+
// `Set.prototype.symmetricDifference` method
|
|
1748
|
+
// https://tc39.es/ecma262/#sec-set.prototype.symmetricdifference
|
|
1749
|
+
$({ target: 'Set', proto: true, real: true, forced: FORCED }, {
|
|
1750
|
+
symmetricDifference: symmetricDifference
|
|
1751
|
+
});
|
|
1752
|
+
|
|
1753
|
+
|
|
1754
|
+
/***/ }),
|
|
1755
|
+
|
|
1756
|
+
/***/ 5031:
|
|
1757
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1758
|
+
|
|
1759
|
+
"use strict";
|
|
1760
|
+
|
|
1761
|
+
var getBuiltIn = __webpack_require__(7751);
|
|
1762
|
+
var uncurryThis = __webpack_require__(9504);
|
|
1763
|
+
var getOwnPropertyNamesModule = __webpack_require__(8480);
|
|
1764
|
+
var getOwnPropertySymbolsModule = __webpack_require__(3717);
|
|
1765
|
+
var anObject = __webpack_require__(932);
|
|
1766
|
+
|
|
1767
|
+
var concat = uncurryThis([].concat);
|
|
1768
|
+
|
|
1769
|
+
// all object keys, includes non-enumerable and symbols
|
|
1770
|
+
module.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {
|
|
1771
|
+
var keys = getOwnPropertyNamesModule.f(anObject(it));
|
|
1772
|
+
var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
|
|
1773
|
+
return getOwnPropertySymbols ? concat(keys, getOwnPropertySymbols(it)) : keys;
|
|
1774
|
+
};
|
|
1775
|
+
|
|
1776
|
+
|
|
1777
|
+
/***/ }),
|
|
1778
|
+
|
|
1779
|
+
/***/ 5169:
|
|
1780
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1781
|
+
|
|
1782
|
+
"use strict";
|
|
1783
|
+
|
|
1784
|
+
var isDetached = __webpack_require__(3238);
|
|
1785
|
+
|
|
1786
|
+
var $TypeError = TypeError;
|
|
1787
|
+
|
|
1788
|
+
module.exports = function (it) {
|
|
1789
|
+
if (isDetached(it)) throw new $TypeError('ArrayBuffer is detached');
|
|
1790
|
+
return it;
|
|
1791
|
+
};
|
|
1792
|
+
|
|
1793
|
+
|
|
1794
|
+
/***/ }),
|
|
1795
|
+
|
|
1796
|
+
/***/ 5170:
|
|
1797
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1798
|
+
|
|
1799
|
+
"use strict";
|
|
1800
|
+
|
|
1801
|
+
var uncurryThisAccessor = __webpack_require__(6706);
|
|
1802
|
+
var SetHelpers = __webpack_require__(4402);
|
|
1803
|
+
|
|
1804
|
+
module.exports = uncurryThisAccessor(SetHelpers.proto, 'size', 'get') || function (set) {
|
|
1805
|
+
return set.size;
|
|
1806
|
+
};
|
|
1807
|
+
|
|
1808
|
+
|
|
1809
|
+
/***/ }),
|
|
1810
|
+
|
|
1811
|
+
/***/ 5397:
|
|
1812
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1813
|
+
|
|
1814
|
+
"use strict";
|
|
1815
|
+
|
|
1816
|
+
// toObject with fallback for non-array-like ES3 strings
|
|
1817
|
+
var IndexedObject = __webpack_require__(7055);
|
|
1818
|
+
var requireObjectCoercible = __webpack_require__(7750);
|
|
1819
|
+
|
|
1820
|
+
module.exports = function (it) {
|
|
1821
|
+
return IndexedObject(requireObjectCoercible(it));
|
|
1822
|
+
};
|
|
1823
|
+
|
|
1824
|
+
|
|
1825
|
+
/***/ }),
|
|
1826
|
+
|
|
1827
|
+
/***/ 5610:
|
|
1828
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1829
|
+
|
|
1830
|
+
"use strict";
|
|
1831
|
+
|
|
1832
|
+
var toIntegerOrInfinity = __webpack_require__(1291);
|
|
1833
|
+
|
|
1834
|
+
var max = Math.max;
|
|
1835
|
+
var min = Math.min;
|
|
1836
|
+
|
|
1837
|
+
// Helper for a popular repeating case of the spec:
|
|
1838
|
+
// Let integer be ? ToInteger(index).
|
|
1839
|
+
// If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
|
|
1840
|
+
module.exports = function (index, length) {
|
|
1841
|
+
var integer = toIntegerOrInfinity(index);
|
|
1842
|
+
return integer < 0 ? max(integer + length, 0) : min(integer, length);
|
|
1843
|
+
};
|
|
1844
|
+
|
|
1845
|
+
|
|
1846
|
+
/***/ }),
|
|
1847
|
+
|
|
1848
|
+
/***/ 5636:
|
|
1849
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1850
|
+
|
|
1851
|
+
"use strict";
|
|
1852
|
+
|
|
1853
|
+
var globalThis = __webpack_require__(4576);
|
|
1854
|
+
var uncurryThis = __webpack_require__(9504);
|
|
1855
|
+
var uncurryThisAccessor = __webpack_require__(6706);
|
|
1856
|
+
var toIndex = __webpack_require__(7696);
|
|
1857
|
+
var notDetached = __webpack_require__(5169);
|
|
1858
|
+
var arrayBufferByteLength = __webpack_require__(7394);
|
|
1859
|
+
var detachTransferable = __webpack_require__(4483);
|
|
1860
|
+
var PROPER_STRUCTURED_CLONE_TRANSFER = __webpack_require__(1548);
|
|
1861
|
+
|
|
1862
|
+
var structuredClone = globalThis.structuredClone;
|
|
1863
|
+
var ArrayBuffer = globalThis.ArrayBuffer;
|
|
1864
|
+
var DataView = globalThis.DataView;
|
|
1865
|
+
var min = Math.min;
|
|
1866
|
+
var ArrayBufferPrototype = ArrayBuffer.prototype;
|
|
1867
|
+
var DataViewPrototype = DataView.prototype;
|
|
1868
|
+
var slice = uncurryThis(ArrayBufferPrototype.slice);
|
|
1869
|
+
var isResizable = uncurryThisAccessor(ArrayBufferPrototype, 'resizable', 'get');
|
|
1870
|
+
var maxByteLength = uncurryThisAccessor(ArrayBufferPrototype, 'maxByteLength', 'get');
|
|
1871
|
+
var getInt8 = uncurryThis(DataViewPrototype.getInt8);
|
|
1872
|
+
var setInt8 = uncurryThis(DataViewPrototype.setInt8);
|
|
1873
|
+
|
|
1874
|
+
module.exports = (PROPER_STRUCTURED_CLONE_TRANSFER || detachTransferable) && function (arrayBuffer, newLength, preserveResizability) {
|
|
1875
|
+
var byteLength = arrayBufferByteLength(arrayBuffer);
|
|
1876
|
+
var newByteLength = newLength === undefined ? byteLength : toIndex(newLength);
|
|
1877
|
+
var fixedLength = !isResizable || !isResizable(arrayBuffer);
|
|
1878
|
+
var newBuffer;
|
|
1879
|
+
notDetached(arrayBuffer);
|
|
1880
|
+
if (PROPER_STRUCTURED_CLONE_TRANSFER) {
|
|
1881
|
+
arrayBuffer = structuredClone(arrayBuffer, { transfer: [arrayBuffer] });
|
|
1882
|
+
if (byteLength === newByteLength && (preserveResizability || fixedLength)) return arrayBuffer;
|
|
1883
|
+
}
|
|
1884
|
+
if (byteLength >= newByteLength && (!preserveResizability || fixedLength)) {
|
|
1885
|
+
newBuffer = slice(arrayBuffer, 0, newByteLength);
|
|
1886
|
+
} else {
|
|
1887
|
+
var options = preserveResizability && !fixedLength && maxByteLength ? { maxByteLength: maxByteLength(arrayBuffer) } : undefined;
|
|
1888
|
+
newBuffer = new ArrayBuffer(newByteLength, options);
|
|
1889
|
+
var a = new DataView(arrayBuffer);
|
|
1890
|
+
var b = new DataView(newBuffer);
|
|
1891
|
+
var copyLength = min(newByteLength, byteLength);
|
|
1892
|
+
for (var i = 0; i < copyLength; i++) setInt8(b, i, getInt8(a, i));
|
|
1893
|
+
}
|
|
1894
|
+
if (!PROPER_STRUCTURED_CLONE_TRANSFER) detachTransferable(arrayBuffer);
|
|
1895
|
+
return newBuffer;
|
|
1896
|
+
};
|
|
1897
|
+
|
|
1898
|
+
|
|
1899
|
+
/***/ }),
|
|
1900
|
+
|
|
1901
|
+
/***/ 5745:
|
|
1902
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1903
|
+
|
|
1904
|
+
"use strict";
|
|
1905
|
+
|
|
1906
|
+
var store = __webpack_require__(7629);
|
|
1907
|
+
|
|
1908
|
+
module.exports = function (key, value) {
|
|
1909
|
+
return store[key] || (store[key] = value || {});
|
|
1910
|
+
};
|
|
1911
|
+
|
|
1912
|
+
|
|
1913
|
+
/***/ }),
|
|
1914
|
+
|
|
1915
|
+
/***/ 5876:
|
|
1916
|
+
/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
|
|
1917
|
+
|
|
1918
|
+
"use strict";
|
|
1919
|
+
|
|
1920
|
+
var $ = __webpack_require__(6518);
|
|
1921
|
+
var isSubsetOf = __webpack_require__(3838);
|
|
1922
|
+
var setMethodAcceptSetLike = __webpack_require__(4916);
|
|
1923
|
+
|
|
1924
|
+
var INCORRECT = !setMethodAcceptSetLike('isSubsetOf', function (result) {
|
|
1925
|
+
return result;
|
|
1926
|
+
});
|
|
1927
|
+
|
|
1928
|
+
// `Set.prototype.isSubsetOf` method
|
|
1929
|
+
// https://tc39.es/ecma262/#sec-set.prototype.issubsetof
|
|
1930
|
+
$({ target: 'Set', proto: true, real: true, forced: INCORRECT }, {
|
|
1931
|
+
isSubsetOf: isSubsetOf
|
|
1932
|
+
});
|
|
1933
|
+
|
|
1934
|
+
|
|
1935
|
+
/***/ }),
|
|
1936
|
+
|
|
1937
|
+
/***/ 5917:
|
|
1938
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1939
|
+
|
|
1940
|
+
"use strict";
|
|
1941
|
+
|
|
1942
|
+
var DESCRIPTORS = __webpack_require__(3724);
|
|
1943
|
+
var fails = __webpack_require__(9039);
|
|
1944
|
+
var createElement = __webpack_require__(4055);
|
|
1945
|
+
|
|
1946
|
+
// Thanks to IE8 for its funny defineProperty
|
|
1947
|
+
module.exports = !DESCRIPTORS && !fails(function () {
|
|
1948
|
+
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
1949
|
+
return Object.defineProperty(createElement('div'), 'a', {
|
|
1950
|
+
get: function () { return 7; }
|
|
1951
|
+
}).a !== 7;
|
|
1952
|
+
});
|
|
1953
|
+
|
|
1954
|
+
|
|
1955
|
+
/***/ }),
|
|
1956
|
+
|
|
1957
|
+
/***/ 5966:
|
|
1958
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1959
|
+
|
|
1960
|
+
"use strict";
|
|
1961
|
+
|
|
1962
|
+
var aCallable = __webpack_require__(9306);
|
|
1963
|
+
var isNullOrUndefined = __webpack_require__(4117);
|
|
1964
|
+
|
|
1965
|
+
// `GetMethod` abstract operation
|
|
1966
|
+
// https://tc39.es/ecma262/#sec-getmethod
|
|
1967
|
+
module.exports = function (V, P) {
|
|
1968
|
+
var func = V[P];
|
|
1969
|
+
return isNullOrUndefined(func) ? undefined : aCallable(func);
|
|
1970
|
+
};
|
|
1971
|
+
|
|
1972
|
+
|
|
1973
|
+
/***/ }),
|
|
1974
|
+
|
|
1975
|
+
/***/ 6080:
|
|
1976
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1977
|
+
|
|
1978
|
+
"use strict";
|
|
1979
|
+
|
|
1980
|
+
var uncurryThis = __webpack_require__(7476);
|
|
1981
|
+
var aCallable = __webpack_require__(9306);
|
|
1982
|
+
var NATIVE_BIND = __webpack_require__(616);
|
|
1983
|
+
|
|
1984
|
+
var bind = uncurryThis(uncurryThis.bind);
|
|
1985
|
+
|
|
1986
|
+
// optional / simple context binding
|
|
1987
|
+
module.exports = function (fn, that) {
|
|
1988
|
+
aCallable(fn);
|
|
1989
|
+
return that === undefined ? fn : NATIVE_BIND ? bind(fn, that) : function (/* ...args */) {
|
|
1990
|
+
return fn.apply(that, arguments);
|
|
1991
|
+
};
|
|
1992
|
+
};
|
|
1993
|
+
|
|
1994
|
+
|
|
1995
|
+
/***/ }),
|
|
1996
|
+
|
|
1997
|
+
/***/ 6119:
|
|
1998
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1999
|
+
|
|
2000
|
+
"use strict";
|
|
2001
|
+
|
|
2002
|
+
var shared = __webpack_require__(5745);
|
|
2003
|
+
var uid = __webpack_require__(3392);
|
|
2004
|
+
|
|
2005
|
+
var keys = shared('keys');
|
|
2006
|
+
|
|
2007
|
+
module.exports = function (key) {
|
|
2008
|
+
return keys[key] || (keys[key] = uid(key));
|
|
2009
|
+
};
|
|
2010
|
+
|
|
2011
|
+
|
|
2012
|
+
/***/ }),
|
|
2013
|
+
|
|
2014
|
+
/***/ 6193:
|
|
2015
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
2016
|
+
|
|
2017
|
+
"use strict";
|
|
2018
|
+
|
|
2019
|
+
var ENVIRONMENT = __webpack_require__(4215);
|
|
2020
|
+
|
|
2021
|
+
module.exports = ENVIRONMENT === 'NODE';
|
|
2022
|
+
|
|
2023
|
+
|
|
2024
|
+
/***/ }),
|
|
2025
|
+
|
|
2026
|
+
/***/ 6198:
|
|
2027
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
2028
|
+
|
|
2029
|
+
"use strict";
|
|
2030
|
+
|
|
2031
|
+
var toLength = __webpack_require__(8014);
|
|
2032
|
+
|
|
2033
|
+
// `LengthOfArrayLike` abstract operation
|
|
2034
|
+
// https://tc39.es/ecma262/#sec-lengthofarraylike
|
|
2035
|
+
module.exports = function (obj) {
|
|
2036
|
+
return toLength(obj.length);
|
|
2037
|
+
};
|
|
2038
|
+
|
|
2039
|
+
|
|
2040
|
+
/***/ }),
|
|
2041
|
+
|
|
2042
|
+
/***/ 6269:
|
|
2043
|
+
/***/ (function(module) {
|
|
2044
|
+
|
|
2045
|
+
"use strict";
|
|
2046
|
+
|
|
2047
|
+
module.exports = {};
|
|
2048
|
+
|
|
2049
|
+
|
|
2050
|
+
/***/ }),
|
|
2051
|
+
|
|
2052
|
+
/***/ 6395:
|
|
2053
|
+
/***/ (function(module) {
|
|
2054
|
+
|
|
2055
|
+
"use strict";
|
|
2056
|
+
|
|
2057
|
+
module.exports = false;
|
|
2058
|
+
|
|
2059
|
+
|
|
2060
|
+
/***/ }),
|
|
2061
|
+
|
|
2062
|
+
/***/ 6518:
|
|
2063
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
2064
|
+
|
|
2065
|
+
"use strict";
|
|
2066
|
+
|
|
2067
|
+
var globalThis = __webpack_require__(4576);
|
|
2068
|
+
var getOwnPropertyDescriptor = (__webpack_require__(7347).f);
|
|
2069
|
+
var createNonEnumerableProperty = __webpack_require__(6699);
|
|
2070
|
+
var defineBuiltIn = __webpack_require__(6840);
|
|
2071
|
+
var defineGlobalProperty = __webpack_require__(9433);
|
|
2072
|
+
var copyConstructorProperties = __webpack_require__(7740);
|
|
2073
|
+
var isForced = __webpack_require__(2796);
|
|
2074
|
+
|
|
2075
|
+
/*
|
|
2076
|
+
options.target - name of the target object
|
|
2077
|
+
options.global - target is the global object
|
|
2078
|
+
options.stat - export as static methods of target
|
|
2079
|
+
options.proto - export as prototype methods of target
|
|
2080
|
+
options.real - real prototype method for the `pure` version
|
|
2081
|
+
options.forced - export even if the native feature is available
|
|
2082
|
+
options.bind - bind methods to the target, required for the `pure` version
|
|
2083
|
+
options.wrap - wrap constructors to preventing global pollution, required for the `pure` version
|
|
2084
|
+
options.unsafe - use the simple assignment of property instead of delete + defineProperty
|
|
2085
|
+
options.sham - add a flag to not completely full polyfills
|
|
2086
|
+
options.enumerable - export as enumerable property
|
|
2087
|
+
options.dontCallGetSet - prevent calling a getter on target
|
|
2088
|
+
options.name - the .name of the function if it does not match the key
|
|
2089
|
+
*/
|
|
2090
|
+
module.exports = function (options, source) {
|
|
2091
|
+
var TARGET = options.target;
|
|
2092
|
+
var GLOBAL = options.global;
|
|
2093
|
+
var STATIC = options.stat;
|
|
2094
|
+
var FORCED, target, key, targetProperty, sourceProperty, descriptor;
|
|
2095
|
+
if (GLOBAL) {
|
|
2096
|
+
target = globalThis;
|
|
2097
|
+
} else if (STATIC) {
|
|
2098
|
+
target = globalThis[TARGET] || defineGlobalProperty(TARGET, {});
|
|
2099
|
+
} else {
|
|
2100
|
+
target = globalThis[TARGET] && globalThis[TARGET].prototype;
|
|
2101
|
+
}
|
|
2102
|
+
if (target) for (key in source) {
|
|
2103
|
+
sourceProperty = source[key];
|
|
2104
|
+
if (options.dontCallGetSet) {
|
|
2105
|
+
descriptor = getOwnPropertyDescriptor(target, key);
|
|
2106
|
+
targetProperty = descriptor && descriptor.value;
|
|
2107
|
+
} else targetProperty = target[key];
|
|
2108
|
+
FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
|
|
2109
|
+
// contained in target
|
|
2110
|
+
if (!FORCED && targetProperty !== undefined) {
|
|
2111
|
+
if (typeof sourceProperty == typeof targetProperty) continue;
|
|
2112
|
+
copyConstructorProperties(sourceProperty, targetProperty);
|
|
2113
|
+
}
|
|
2114
|
+
// add a flag to not completely full polyfills
|
|
2115
|
+
if (options.sham || (targetProperty && targetProperty.sham)) {
|
|
2116
|
+
createNonEnumerableProperty(sourceProperty, 'sham', true);
|
|
2117
|
+
}
|
|
2118
|
+
defineBuiltIn(target, key, sourceProperty, options);
|
|
2119
|
+
}
|
|
2120
|
+
};
|
|
2121
|
+
|
|
2122
|
+
|
|
2123
|
+
/***/ }),
|
|
2124
|
+
|
|
2125
|
+
/***/ 6573:
|
|
2126
|
+
/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
|
|
2127
|
+
|
|
2128
|
+
"use strict";
|
|
2129
|
+
|
|
2130
|
+
var DESCRIPTORS = __webpack_require__(3724);
|
|
2131
|
+
var defineBuiltInAccessor = __webpack_require__(2106);
|
|
2132
|
+
var isDetached = __webpack_require__(3238);
|
|
2133
|
+
|
|
2134
|
+
var ArrayBufferPrototype = ArrayBuffer.prototype;
|
|
2135
|
+
|
|
2136
|
+
// `ArrayBuffer.prototype.detached` getter
|
|
2137
|
+
// https://tc39.es/ecma262/#sec-get-arraybuffer.prototype.detached
|
|
2138
|
+
if (DESCRIPTORS && !('detached' in ArrayBufferPrototype)) {
|
|
2139
|
+
defineBuiltInAccessor(ArrayBufferPrototype, 'detached', {
|
|
2140
|
+
configurable: true,
|
|
2141
|
+
get: function detached() {
|
|
2142
|
+
return isDetached(this);
|
|
2143
|
+
}
|
|
2144
|
+
});
|
|
2145
|
+
}
|
|
2146
|
+
|
|
2147
|
+
|
|
2148
|
+
/***/ }),
|
|
2149
|
+
|
|
2150
|
+
/***/ 6699:
|
|
2151
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
2152
|
+
|
|
2153
|
+
"use strict";
|
|
2154
|
+
|
|
2155
|
+
var DESCRIPTORS = __webpack_require__(3724);
|
|
2156
|
+
var definePropertyModule = __webpack_require__(4913);
|
|
2157
|
+
var createPropertyDescriptor = __webpack_require__(6980);
|
|
2158
|
+
|
|
2159
|
+
module.exports = DESCRIPTORS ? function (object, key, value) {
|
|
2160
|
+
return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));
|
|
2161
|
+
} : function (object, key, value) {
|
|
2162
|
+
object[key] = value;
|
|
2163
|
+
return object;
|
|
2164
|
+
};
|
|
2165
|
+
|
|
2166
|
+
|
|
2167
|
+
/***/ }),
|
|
2168
|
+
|
|
2169
|
+
/***/ 6706:
|
|
2170
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
2171
|
+
|
|
2172
|
+
"use strict";
|
|
2173
|
+
|
|
2174
|
+
var uncurryThis = __webpack_require__(9504);
|
|
2175
|
+
var aCallable = __webpack_require__(9306);
|
|
2176
|
+
|
|
2177
|
+
module.exports = function (object, key, method) {
|
|
2178
|
+
try {
|
|
2179
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
2180
|
+
return uncurryThis(aCallable(Object.getOwnPropertyDescriptor(object, key)[method]));
|
|
2181
|
+
} catch (error) { /* empty */ }
|
|
2182
|
+
};
|
|
2183
|
+
|
|
2184
|
+
|
|
2185
|
+
/***/ }),
|
|
2186
|
+
|
|
2187
|
+
/***/ 6801:
|
|
2188
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
2189
|
+
|
|
2190
|
+
"use strict";
|
|
2191
|
+
|
|
2192
|
+
var DESCRIPTORS = __webpack_require__(3724);
|
|
2193
|
+
var V8_PROTOTYPE_DEFINE_BUG = __webpack_require__(8686);
|
|
2194
|
+
var definePropertyModule = __webpack_require__(4913);
|
|
2195
|
+
var anObject = __webpack_require__(932);
|
|
2196
|
+
var toIndexedObject = __webpack_require__(5397);
|
|
2197
|
+
var objectKeys = __webpack_require__(1072);
|
|
2198
|
+
|
|
2199
|
+
// `Object.defineProperties` method
|
|
2200
|
+
// https://tc39.es/ecma262/#sec-object.defineproperties
|
|
2201
|
+
// eslint-disable-next-line es/no-object-defineproperties -- safe
|
|
2202
|
+
exports.f = DESCRIPTORS && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
|
|
2203
|
+
anObject(O);
|
|
2204
|
+
var props = toIndexedObject(Properties);
|
|
2205
|
+
var keys = objectKeys(Properties);
|
|
2206
|
+
var length = keys.length;
|
|
2207
|
+
var index = 0;
|
|
2208
|
+
var key;
|
|
2209
|
+
while (length > index) definePropertyModule.f(O, key = keys[index++], props[key]);
|
|
2210
|
+
return O;
|
|
2211
|
+
};
|
|
2212
|
+
|
|
2213
|
+
|
|
2214
|
+
/***/ }),
|
|
2215
|
+
|
|
2216
|
+
/***/ 6823:
|
|
2217
|
+
/***/ (function(module) {
|
|
2218
|
+
|
|
2219
|
+
"use strict";
|
|
2220
|
+
|
|
2221
|
+
var $String = String;
|
|
2222
|
+
|
|
2223
|
+
module.exports = function (argument) {
|
|
2224
|
+
try {
|
|
2225
|
+
return $String(argument);
|
|
2226
|
+
} catch (error) {
|
|
2227
|
+
return 'Object';
|
|
2228
|
+
}
|
|
2229
|
+
};
|
|
2230
|
+
|
|
2231
|
+
|
|
2232
|
+
/***/ }),
|
|
2233
|
+
|
|
2234
|
+
/***/ 6837:
|
|
2235
|
+
/***/ (function(module) {
|
|
2236
|
+
|
|
2237
|
+
"use strict";
|
|
2238
|
+
|
|
2239
|
+
var $TypeError = TypeError;
|
|
2240
|
+
var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF; // 2 ** 53 - 1 == 9007199254740991
|
|
2241
|
+
|
|
2242
|
+
module.exports = function (it) {
|
|
2243
|
+
if (it > MAX_SAFE_INTEGER) throw $TypeError('Maximum allowed index exceeded');
|
|
2244
|
+
return it;
|
|
2245
|
+
};
|
|
2246
|
+
|
|
2247
|
+
|
|
2248
|
+
/***/ }),
|
|
2249
|
+
|
|
2250
|
+
/***/ 6840:
|
|
2251
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
2252
|
+
|
|
2253
|
+
"use strict";
|
|
2254
|
+
|
|
2255
|
+
var isCallable = __webpack_require__(4901);
|
|
2256
|
+
var definePropertyModule = __webpack_require__(4913);
|
|
2257
|
+
var makeBuiltIn = __webpack_require__(283);
|
|
2258
|
+
var defineGlobalProperty = __webpack_require__(9433);
|
|
2259
|
+
|
|
2260
|
+
module.exports = function (O, key, value, options) {
|
|
2261
|
+
if (!options) options = {};
|
|
2262
|
+
var simple = options.enumerable;
|
|
2263
|
+
var name = options.name !== undefined ? options.name : key;
|
|
2264
|
+
if (isCallable(value)) makeBuiltIn(value, name, options);
|
|
2265
|
+
if (options.global) {
|
|
2266
|
+
if (simple) O[key] = value;
|
|
2267
|
+
else defineGlobalProperty(key, value);
|
|
2268
|
+
} else {
|
|
2269
|
+
try {
|
|
2270
|
+
if (!options.unsafe) delete O[key];
|
|
2271
|
+
else if (O[key]) simple = true;
|
|
2272
|
+
} catch (error) { /* empty */ }
|
|
2273
|
+
if (simple) O[key] = value;
|
|
2274
|
+
else definePropertyModule.f(O, key, {
|
|
2275
|
+
value: value,
|
|
2276
|
+
enumerable: false,
|
|
2277
|
+
configurable: !options.nonConfigurable,
|
|
2278
|
+
writable: !options.nonWritable
|
|
2279
|
+
});
|
|
2280
|
+
} return O;
|
|
2281
|
+
};
|
|
2282
|
+
|
|
2283
|
+
|
|
2284
|
+
/***/ }),
|
|
2285
|
+
|
|
2286
|
+
/***/ 6845:
|
|
2287
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
2288
|
+
|
|
2289
|
+
__webpack_require__(4114);
|
|
2290
|
+
__webpack_require__(6573);
|
|
2291
|
+
__webpack_require__(8100);
|
|
2292
|
+
__webpack_require__(7936);
|
|
2293
|
+
__webpack_require__(7642);
|
|
2294
|
+
__webpack_require__(8004);
|
|
2295
|
+
__webpack_require__(3853);
|
|
2296
|
+
__webpack_require__(5876);
|
|
2297
|
+
__webpack_require__(2475);
|
|
2298
|
+
__webpack_require__(5024);
|
|
2299
|
+
__webpack_require__(1698);
|
|
2300
|
+
/*!
|
|
2301
|
+
* @license deepcopy.js Copyright(c) 2013 sasa+1
|
|
2302
|
+
* https://github.com/sasaplus1/deepcopy.js
|
|
2303
|
+
* Released under the MIT license.
|
|
2304
|
+
*
|
|
2305
|
+
* type-detect
|
|
2306
|
+
* Copyright(c) 2013 jake luer <jake@alogicalparadox.com>
|
|
2307
|
+
* MIT Licensed
|
|
2308
|
+
*/
|
|
2309
|
+
(function (global, factory) {
|
|
2310
|
+
true ? module.exports = factory() : 0;
|
|
2311
|
+
})(this, function () {
|
|
2312
|
+
'use strict';
|
|
2313
|
+
|
|
2314
|
+
var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof __webpack_require__.g !== 'undefined' ? __webpack_require__.g : typeof self !== 'undefined' ? self : {};
|
|
2315
|
+
function createCommonjsModule(fn, module) {
|
|
2316
|
+
return module = {
|
|
2317
|
+
exports: {}
|
|
2318
|
+
}, fn(module, module.exports), module.exports;
|
|
2319
|
+
}
|
|
2320
|
+
var typeDetect = createCommonjsModule(function (module, exports) {
|
|
2321
|
+
(function (global, factory) {
|
|
2322
|
+
module.exports = factory();
|
|
2323
|
+
})(commonjsGlobal, function () {
|
|
2324
|
+
/* !
|
|
2325
|
+
* type-detect
|
|
2326
|
+
* Copyright(c) 2013 jake luer <jake@alogicalparadox.com>
|
|
2327
|
+
* MIT Licensed
|
|
2328
|
+
*/
|
|
2329
|
+
var promiseExists = typeof Promise === 'function';
|
|
2330
|
+
|
|
2331
|
+
/* eslint-disable no-undef */
|
|
2332
|
+
var globalObject = typeof self === 'object' ? self : commonjsGlobal; // eslint-disable-line id-blacklist
|
|
2333
|
+
|
|
2334
|
+
var symbolExists = typeof Symbol !== 'undefined';
|
|
2335
|
+
var mapExists = typeof Map !== 'undefined';
|
|
2336
|
+
var setExists = typeof Set !== 'undefined';
|
|
2337
|
+
var weakMapExists = typeof WeakMap !== 'undefined';
|
|
2338
|
+
var weakSetExists = typeof WeakSet !== 'undefined';
|
|
2339
|
+
var dataViewExists = typeof DataView !== 'undefined';
|
|
2340
|
+
var symbolIteratorExists = symbolExists && typeof Symbol.iterator !== 'undefined';
|
|
2341
|
+
var symbolToStringTagExists = symbolExists && typeof Symbol.toStringTag !== 'undefined';
|
|
2342
|
+
var setEntriesExists = setExists && typeof Set.prototype.entries === 'function';
|
|
2343
|
+
var mapEntriesExists = mapExists && typeof Map.prototype.entries === 'function';
|
|
2344
|
+
var setIteratorPrototype = setEntriesExists && Object.getPrototypeOf(new Set().entries());
|
|
2345
|
+
var mapIteratorPrototype = mapEntriesExists && Object.getPrototypeOf(new Map().entries());
|
|
2346
|
+
var arrayIteratorExists = symbolIteratorExists && typeof Array.prototype[Symbol.iterator] === 'function';
|
|
2347
|
+
var arrayIteratorPrototype = arrayIteratorExists && Object.getPrototypeOf([][Symbol.iterator]());
|
|
2348
|
+
var stringIteratorExists = symbolIteratorExists && typeof String.prototype[Symbol.iterator] === 'function';
|
|
2349
|
+
var stringIteratorPrototype = stringIteratorExists && Object.getPrototypeOf(''[Symbol.iterator]());
|
|
2350
|
+
var toStringLeftSliceLength = 8;
|
|
2351
|
+
var toStringRightSliceLength = -1;
|
|
2352
|
+
/**
|
|
2353
|
+
* ### typeOf (obj)
|
|
2354
|
+
*
|
|
2355
|
+
* Uses `Object.prototype.toString` to determine the type of an object,
|
|
2356
|
+
* normalising behaviour across engine versions & well optimised.
|
|
2357
|
+
*
|
|
2358
|
+
* @param {Mixed} object
|
|
2359
|
+
* @return {String} object type
|
|
2360
|
+
* @api public
|
|
2361
|
+
*/
|
|
2362
|
+
function typeDetect(obj) {
|
|
2363
|
+
/* ! Speed optimisation
|
|
2364
|
+
* Pre:
|
|
2365
|
+
* string literal x 3,039,035 ops/sec ±1.62% (78 runs sampled)
|
|
2366
|
+
* boolean literal x 1,424,138 ops/sec ±4.54% (75 runs sampled)
|
|
2367
|
+
* number literal x 1,653,153 ops/sec ±1.91% (82 runs sampled)
|
|
2368
|
+
* undefined x 9,978,660 ops/sec ±1.92% (75 runs sampled)
|
|
2369
|
+
* function x 2,556,769 ops/sec ±1.73% (77 runs sampled)
|
|
2370
|
+
* Post:
|
|
2371
|
+
* string literal x 38,564,796 ops/sec ±1.15% (79 runs sampled)
|
|
2372
|
+
* boolean literal x 31,148,940 ops/sec ±1.10% (79 runs sampled)
|
|
2373
|
+
* number literal x 32,679,330 ops/sec ±1.90% (78 runs sampled)
|
|
2374
|
+
* undefined x 32,363,368 ops/sec ±1.07% (82 runs sampled)
|
|
2375
|
+
* function x 31,296,870 ops/sec ±0.96% (83 runs sampled)
|
|
2376
|
+
*/
|
|
2377
|
+
var typeofObj = typeof obj;
|
|
2378
|
+
if (typeofObj !== 'object') {
|
|
2379
|
+
return typeofObj;
|
|
2380
|
+
}
|
|
2381
|
+
|
|
2382
|
+
/* ! Speed optimisation
|
|
2383
|
+
* Pre:
|
|
2384
|
+
* null x 28,645,765 ops/sec ±1.17% (82 runs sampled)
|
|
2385
|
+
* Post:
|
|
2386
|
+
* null x 36,428,962 ops/sec ±1.37% (84 runs sampled)
|
|
2387
|
+
*/
|
|
2388
|
+
if (obj === null) {
|
|
2389
|
+
return 'null';
|
|
2390
|
+
}
|
|
2391
|
+
|
|
2392
|
+
/* ! Spec Conformance
|
|
2393
|
+
* Test: `Object.prototype.toString.call(window)``
|
|
2394
|
+
* - Node === "[object global]"
|
|
2395
|
+
* - Chrome === "[object global]"
|
|
2396
|
+
* - Firefox === "[object Window]"
|
|
2397
|
+
* - PhantomJS === "[object Window]"
|
|
2398
|
+
* - Safari === "[object Window]"
|
|
2399
|
+
* - IE 11 === "[object Window]"
|
|
2400
|
+
* - IE Edge === "[object Window]"
|
|
2401
|
+
* Test: `Object.prototype.toString.call(this)``
|
|
2402
|
+
* - Chrome Worker === "[object global]"
|
|
2403
|
+
* - Firefox Worker === "[object DedicatedWorkerGlobalScope]"
|
|
2404
|
+
* - Safari Worker === "[object DedicatedWorkerGlobalScope]"
|
|
2405
|
+
* - IE 11 Worker === "[object WorkerGlobalScope]"
|
|
2406
|
+
* - IE Edge Worker === "[object WorkerGlobalScope]"
|
|
2407
|
+
*/
|
|
2408
|
+
if (obj === globalObject) {
|
|
2409
|
+
return 'global';
|
|
2410
|
+
}
|
|
2411
|
+
|
|
2412
|
+
/* ! Speed optimisation
|
|
2413
|
+
* Pre:
|
|
2414
|
+
* array literal x 2,888,352 ops/sec ±0.67% (82 runs sampled)
|
|
2415
|
+
* Post:
|
|
2416
|
+
* array literal x 22,479,650 ops/sec ±0.96% (81 runs sampled)
|
|
2417
|
+
*/
|
|
2418
|
+
if (Array.isArray(obj) && (symbolToStringTagExists === false || !(Symbol.toStringTag in obj))) {
|
|
2419
|
+
return 'Array';
|
|
2420
|
+
}
|
|
2421
|
+
|
|
2422
|
+
// Not caching existence of `window` and related properties due to potential
|
|
2423
|
+
// for `window` to be unset before tests in quasi-browser environments.
|
|
2424
|
+
if (typeof window === 'object' && window !== null) {
|
|
2425
|
+
/* ! Spec Conformance
|
|
2426
|
+
* (https://html.spec.whatwg.org/multipage/browsers.html#location)
|
|
2427
|
+
* WhatWG HTML$7.7.3 - The `Location` interface
|
|
2428
|
+
* Test: `Object.prototype.toString.call(window.location)``
|
|
2429
|
+
* - IE <=11 === "[object Object]"
|
|
2430
|
+
* - IE Edge <=13 === "[object Object]"
|
|
2431
|
+
*/
|
|
2432
|
+
if (typeof window.location === 'object' && obj === window.location) {
|
|
2433
|
+
return 'Location';
|
|
2434
|
+
}
|
|
2435
|
+
|
|
2436
|
+
/* ! Spec Conformance
|
|
2437
|
+
* (https://html.spec.whatwg.org/#document)
|
|
2438
|
+
* WhatWG HTML$3.1.1 - The `Document` object
|
|
2439
|
+
* Note: Most browsers currently adher to the W3C DOM Level 2 spec
|
|
2440
|
+
* (https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-26809268)
|
|
2441
|
+
* which suggests that browsers should use HTMLTableCellElement for
|
|
2442
|
+
* both TD and TH elements. WhatWG separates these.
|
|
2443
|
+
* WhatWG HTML states:
|
|
2444
|
+
* > For historical reasons, Window objects must also have a
|
|
2445
|
+
* > writable, configurable, non-enumerable property named
|
|
2446
|
+
* > HTMLDocument whose value is the Document interface object.
|
|
2447
|
+
* Test: `Object.prototype.toString.call(document)``
|
|
2448
|
+
* - Chrome === "[object HTMLDocument]"
|
|
2449
|
+
* - Firefox === "[object HTMLDocument]"
|
|
2450
|
+
* - Safari === "[object HTMLDocument]"
|
|
2451
|
+
* - IE <=10 === "[object Document]"
|
|
2452
|
+
* - IE 11 === "[object HTMLDocument]"
|
|
2453
|
+
* - IE Edge <=13 === "[object HTMLDocument]"
|
|
2454
|
+
*/
|
|
2455
|
+
if (typeof window.document === 'object' && obj === window.document) {
|
|
2456
|
+
return 'Document';
|
|
2457
|
+
}
|
|
2458
|
+
if (typeof window.navigator === 'object') {
|
|
2459
|
+
/* ! Spec Conformance
|
|
2460
|
+
* (https://html.spec.whatwg.org/multipage/webappapis.html#mimetypearray)
|
|
2461
|
+
* WhatWG HTML$8.6.1.5 - Plugins - Interface MimeTypeArray
|
|
2462
|
+
* Test: `Object.prototype.toString.call(navigator.mimeTypes)``
|
|
2463
|
+
* - IE <=10 === "[object MSMimeTypesCollection]"
|
|
2464
|
+
*/
|
|
2465
|
+
if (typeof window.navigator.mimeTypes === 'object' && obj === window.navigator.mimeTypes) {
|
|
2466
|
+
return 'MimeTypeArray';
|
|
2467
|
+
}
|
|
2468
|
+
|
|
2469
|
+
/* ! Spec Conformance
|
|
2470
|
+
* (https://html.spec.whatwg.org/multipage/webappapis.html#pluginarray)
|
|
2471
|
+
* WhatWG HTML$8.6.1.5 - Plugins - Interface PluginArray
|
|
2472
|
+
* Test: `Object.prototype.toString.call(navigator.plugins)``
|
|
2473
|
+
* - IE <=10 === "[object MSPluginsCollection]"
|
|
2474
|
+
*/
|
|
2475
|
+
if (typeof window.navigator.plugins === 'object' && obj === window.navigator.plugins) {
|
|
2476
|
+
return 'PluginArray';
|
|
2477
|
+
}
|
|
2478
|
+
}
|
|
2479
|
+
if ((typeof window.HTMLElement === 'function' || typeof window.HTMLElement === 'object') && obj instanceof window.HTMLElement) {
|
|
2480
|
+
/* ! Spec Conformance
|
|
2481
|
+
* (https://html.spec.whatwg.org/multipage/webappapis.html#pluginarray)
|
|
2482
|
+
* WhatWG HTML$4.4.4 - The `blockquote` element - Interface `HTMLQuoteElement`
|
|
2483
|
+
* Test: `Object.prototype.toString.call(document.createElement('blockquote'))``
|
|
2484
|
+
* - IE <=10 === "[object HTMLBlockElement]"
|
|
2485
|
+
*/
|
|
2486
|
+
if (obj.tagName === 'BLOCKQUOTE') {
|
|
2487
|
+
return 'HTMLQuoteElement';
|
|
2488
|
+
}
|
|
2489
|
+
|
|
2490
|
+
/* ! Spec Conformance
|
|
2491
|
+
* (https://html.spec.whatwg.org/#htmltabledatacellelement)
|
|
2492
|
+
* WhatWG HTML$4.9.9 - The `td` element - Interface `HTMLTableDataCellElement`
|
|
2493
|
+
* Note: Most browsers currently adher to the W3C DOM Level 2 spec
|
|
2494
|
+
* (https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-82915075)
|
|
2495
|
+
* which suggests that browsers should use HTMLTableCellElement for
|
|
2496
|
+
* both TD and TH elements. WhatWG separates these.
|
|
2497
|
+
* Test: Object.prototype.toString.call(document.createElement('td'))
|
|
2498
|
+
* - Chrome === "[object HTMLTableCellElement]"
|
|
2499
|
+
* - Firefox === "[object HTMLTableCellElement]"
|
|
2500
|
+
* - Safari === "[object HTMLTableCellElement]"
|
|
2501
|
+
*/
|
|
2502
|
+
if (obj.tagName === 'TD') {
|
|
2503
|
+
return 'HTMLTableDataCellElement';
|
|
2504
|
+
}
|
|
2505
|
+
|
|
2506
|
+
/* ! Spec Conformance
|
|
2507
|
+
* (https://html.spec.whatwg.org/#htmltableheadercellelement)
|
|
2508
|
+
* WhatWG HTML$4.9.9 - The `td` element - Interface `HTMLTableHeaderCellElement`
|
|
2509
|
+
* Note: Most browsers currently adher to the W3C DOM Level 2 spec
|
|
2510
|
+
* (https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-82915075)
|
|
2511
|
+
* which suggests that browsers should use HTMLTableCellElement for
|
|
2512
|
+
* both TD and TH elements. WhatWG separates these.
|
|
2513
|
+
* Test: Object.prototype.toString.call(document.createElement('th'))
|
|
2514
|
+
* - Chrome === "[object HTMLTableCellElement]"
|
|
2515
|
+
* - Firefox === "[object HTMLTableCellElement]"
|
|
2516
|
+
* - Safari === "[object HTMLTableCellElement]"
|
|
2517
|
+
*/
|
|
2518
|
+
if (obj.tagName === 'TH') {
|
|
2519
|
+
return 'HTMLTableHeaderCellElement';
|
|
2520
|
+
}
|
|
2521
|
+
}
|
|
2522
|
+
}
|
|
2523
|
+
|
|
2524
|
+
/* ! Speed optimisation
|
|
2525
|
+
* Pre:
|
|
2526
|
+
* Float64Array x 625,644 ops/sec ±1.58% (80 runs sampled)
|
|
2527
|
+
* Float32Array x 1,279,852 ops/sec ±2.91% (77 runs sampled)
|
|
2528
|
+
* Uint32Array x 1,178,185 ops/sec ±1.95% (83 runs sampled)
|
|
2529
|
+
* Uint16Array x 1,008,380 ops/sec ±2.25% (80 runs sampled)
|
|
2530
|
+
* Uint8Array x 1,128,040 ops/sec ±2.11% (81 runs sampled)
|
|
2531
|
+
* Int32Array x 1,170,119 ops/sec ±2.88% (80 runs sampled)
|
|
2532
|
+
* Int16Array x 1,176,348 ops/sec ±5.79% (86 runs sampled)
|
|
2533
|
+
* Int8Array x 1,058,707 ops/sec ±4.94% (77 runs sampled)
|
|
2534
|
+
* Uint8ClampedArray x 1,110,633 ops/sec ±4.20% (80 runs sampled)
|
|
2535
|
+
* Post:
|
|
2536
|
+
* Float64Array x 7,105,671 ops/sec ±13.47% (64 runs sampled)
|
|
2537
|
+
* Float32Array x 5,887,912 ops/sec ±1.46% (82 runs sampled)
|
|
2538
|
+
* Uint32Array x 6,491,661 ops/sec ±1.76% (79 runs sampled)
|
|
2539
|
+
* Uint16Array x 6,559,795 ops/sec ±1.67% (82 runs sampled)
|
|
2540
|
+
* Uint8Array x 6,463,966 ops/sec ±1.43% (85 runs sampled)
|
|
2541
|
+
* Int32Array x 5,641,841 ops/sec ±3.49% (81 runs sampled)
|
|
2542
|
+
* Int16Array x 6,583,511 ops/sec ±1.98% (80 runs sampled)
|
|
2543
|
+
* Int8Array x 6,606,078 ops/sec ±1.74% (81 runs sampled)
|
|
2544
|
+
* Uint8ClampedArray x 6,602,224 ops/sec ±1.77% (83 runs sampled)
|
|
2545
|
+
*/
|
|
2546
|
+
var stringTag = symbolToStringTagExists && obj[Symbol.toStringTag];
|
|
2547
|
+
if (typeof stringTag === 'string') {
|
|
2548
|
+
return stringTag;
|
|
2549
|
+
}
|
|
2550
|
+
var objPrototype = Object.getPrototypeOf(obj);
|
|
2551
|
+
/* ! Speed optimisation
|
|
2552
|
+
* Pre:
|
|
2553
|
+
* regex literal x 1,772,385 ops/sec ±1.85% (77 runs sampled)
|
|
2554
|
+
* regex constructor x 2,143,634 ops/sec ±2.46% (78 runs sampled)
|
|
2555
|
+
* Post:
|
|
2556
|
+
* regex literal x 3,928,009 ops/sec ±0.65% (78 runs sampled)
|
|
2557
|
+
* regex constructor x 3,931,108 ops/sec ±0.58% (84 runs sampled)
|
|
2558
|
+
*/
|
|
2559
|
+
if (objPrototype === RegExp.prototype) {
|
|
2560
|
+
return 'RegExp';
|
|
2561
|
+
}
|
|
2562
|
+
|
|
2563
|
+
/* ! Speed optimisation
|
|
2564
|
+
* Pre:
|
|
2565
|
+
* date x 2,130,074 ops/sec ±4.42% (68 runs sampled)
|
|
2566
|
+
* Post:
|
|
2567
|
+
* date x 3,953,779 ops/sec ±1.35% (77 runs sampled)
|
|
2568
|
+
*/
|
|
2569
|
+
if (objPrototype === Date.prototype) {
|
|
2570
|
+
return 'Date';
|
|
2571
|
+
}
|
|
2572
|
+
|
|
2573
|
+
/* ! Spec Conformance
|
|
2574
|
+
* (http://www.ecma-international.org/ecma-262/6.0/index.html#sec-promise.prototype-@@tostringtag)
|
|
2575
|
+
* ES6$25.4.5.4 - Promise.prototype[@@toStringTag] should be "Promise":
|
|
2576
|
+
* Test: `Object.prototype.toString.call(Promise.resolve())``
|
|
2577
|
+
* - Chrome <=47 === "[object Object]"
|
|
2578
|
+
* - Edge <=20 === "[object Object]"
|
|
2579
|
+
* - Firefox 29-Latest === "[object Promise]"
|
|
2580
|
+
* - Safari 7.1-Latest === "[object Promise]"
|
|
2581
|
+
*/
|
|
2582
|
+
if (promiseExists && objPrototype === Promise.prototype) {
|
|
2583
|
+
return 'Promise';
|
|
2584
|
+
}
|
|
2585
|
+
|
|
2586
|
+
/* ! Speed optimisation
|
|
2587
|
+
* Pre:
|
|
2588
|
+
* set x 2,222,186 ops/sec ±1.31% (82 runs sampled)
|
|
2589
|
+
* Post:
|
|
2590
|
+
* set x 4,545,879 ops/sec ±1.13% (83 runs sampled)
|
|
2591
|
+
*/
|
|
2592
|
+
if (setExists && objPrototype === Set.prototype) {
|
|
2593
|
+
return 'Set';
|
|
2594
|
+
}
|
|
2595
|
+
|
|
2596
|
+
/* ! Speed optimisation
|
|
2597
|
+
* Pre:
|
|
2598
|
+
* map x 2,396,842 ops/sec ±1.59% (81 runs sampled)
|
|
2599
|
+
* Post:
|
|
2600
|
+
* map x 4,183,945 ops/sec ±6.59% (82 runs sampled)
|
|
2601
|
+
*/
|
|
2602
|
+
if (mapExists && objPrototype === Map.prototype) {
|
|
2603
|
+
return 'Map';
|
|
2604
|
+
}
|
|
2605
|
+
|
|
2606
|
+
/* ! Speed optimisation
|
|
2607
|
+
* Pre:
|
|
2608
|
+
* weakset x 1,323,220 ops/sec ±2.17% (76 runs sampled)
|
|
2609
|
+
* Post:
|
|
2610
|
+
* weakset x 4,237,510 ops/sec ±2.01% (77 runs sampled)
|
|
2611
|
+
*/
|
|
2612
|
+
if (weakSetExists && objPrototype === WeakSet.prototype) {
|
|
2613
|
+
return 'WeakSet';
|
|
2614
|
+
}
|
|
2615
|
+
|
|
2616
|
+
/* ! Speed optimisation
|
|
2617
|
+
* Pre:
|
|
2618
|
+
* weakmap x 1,500,260 ops/sec ±2.02% (78 runs sampled)
|
|
2619
|
+
* Post:
|
|
2620
|
+
* weakmap x 3,881,384 ops/sec ±1.45% (82 runs sampled)
|
|
2621
|
+
*/
|
|
2622
|
+
if (weakMapExists && objPrototype === WeakMap.prototype) {
|
|
2623
|
+
return 'WeakMap';
|
|
2624
|
+
}
|
|
2625
|
+
|
|
2626
|
+
/* ! Spec Conformance
|
|
2627
|
+
* (http://www.ecma-international.org/ecma-262/6.0/index.html#sec-dataview.prototype-@@tostringtag)
|
|
2628
|
+
* ES6$24.2.4.21 - DataView.prototype[@@toStringTag] should be "DataView":
|
|
2629
|
+
* Test: `Object.prototype.toString.call(new DataView(new ArrayBuffer(1)))``
|
|
2630
|
+
* - Edge <=13 === "[object Object]"
|
|
2631
|
+
*/
|
|
2632
|
+
if (dataViewExists && objPrototype === DataView.prototype) {
|
|
2633
|
+
return 'DataView';
|
|
2634
|
+
}
|
|
2635
|
+
|
|
2636
|
+
/* ! Spec Conformance
|
|
2637
|
+
* (http://www.ecma-international.org/ecma-262/6.0/index.html#sec-%mapiteratorprototype%-@@tostringtag)
|
|
2638
|
+
* ES6$23.1.5.2.2 - %MapIteratorPrototype%[@@toStringTag] should be "Map Iterator":
|
|
2639
|
+
* Test: `Object.prototype.toString.call(new Map().entries())``
|
|
2640
|
+
* - Edge <=13 === "[object Object]"
|
|
2641
|
+
*/
|
|
2642
|
+
if (mapExists && objPrototype === mapIteratorPrototype) {
|
|
2643
|
+
return 'Map Iterator';
|
|
2644
|
+
}
|
|
2645
|
+
|
|
2646
|
+
/* ! Spec Conformance
|
|
2647
|
+
* (http://www.ecma-international.org/ecma-262/6.0/index.html#sec-%setiteratorprototype%-@@tostringtag)
|
|
2648
|
+
* ES6$23.2.5.2.2 - %SetIteratorPrototype%[@@toStringTag] should be "Set Iterator":
|
|
2649
|
+
* Test: `Object.prototype.toString.call(new Set().entries())``
|
|
2650
|
+
* - Edge <=13 === "[object Object]"
|
|
2651
|
+
*/
|
|
2652
|
+
if (setExists && objPrototype === setIteratorPrototype) {
|
|
2653
|
+
return 'Set Iterator';
|
|
2654
|
+
}
|
|
2655
|
+
|
|
2656
|
+
/* ! Spec Conformance
|
|
2657
|
+
* (http://www.ecma-international.org/ecma-262/6.0/index.html#sec-%arrayiteratorprototype%-@@tostringtag)
|
|
2658
|
+
* ES6$22.1.5.2.2 - %ArrayIteratorPrototype%[@@toStringTag] should be "Array Iterator":
|
|
2659
|
+
* Test: `Object.prototype.toString.call([][Symbol.iterator]())``
|
|
2660
|
+
* - Edge <=13 === "[object Object]"
|
|
2661
|
+
*/
|
|
2662
|
+
if (arrayIteratorExists && objPrototype === arrayIteratorPrototype) {
|
|
2663
|
+
return 'Array Iterator';
|
|
2664
|
+
}
|
|
2665
|
+
|
|
2666
|
+
/* ! Spec Conformance
|
|
2667
|
+
* (http://www.ecma-international.org/ecma-262/6.0/index.html#sec-%stringiteratorprototype%-@@tostringtag)
|
|
2668
|
+
* ES6$21.1.5.2.2 - %StringIteratorPrototype%[@@toStringTag] should be "String Iterator":
|
|
2669
|
+
* Test: `Object.prototype.toString.call(''[Symbol.iterator]())``
|
|
2670
|
+
* - Edge <=13 === "[object Object]"
|
|
2671
|
+
*/
|
|
2672
|
+
if (stringIteratorExists && objPrototype === stringIteratorPrototype) {
|
|
2673
|
+
return 'String Iterator';
|
|
2674
|
+
}
|
|
2675
|
+
|
|
2676
|
+
/* ! Speed optimisation
|
|
2677
|
+
* Pre:
|
|
2678
|
+
* object from null x 2,424,320 ops/sec ±1.67% (76 runs sampled)
|
|
2679
|
+
* Post:
|
|
2680
|
+
* object from null x 5,838,000 ops/sec ±0.99% (84 runs sampled)
|
|
2681
|
+
*/
|
|
2682
|
+
if (objPrototype === null) {
|
|
2683
|
+
return 'Object';
|
|
2684
|
+
}
|
|
2685
|
+
return Object.prototype.toString.call(obj).slice(toStringLeftSliceLength, toStringRightSliceLength);
|
|
2686
|
+
}
|
|
2687
|
+
return typeDetect;
|
|
2688
|
+
});
|
|
2689
|
+
});
|
|
2690
|
+
const isBufferExists = typeof Buffer !== 'undefined';
|
|
2691
|
+
const isBufferFromExists = isBufferExists && typeof Buffer.from !== 'undefined';
|
|
2692
|
+
const isBuffer = isBufferExists ?
|
|
2693
|
+
/**
|
|
2694
|
+
* is value is Buffer?
|
|
2695
|
+
*
|
|
2696
|
+
* @param {*} value
|
|
2697
|
+
* @return {boolean}
|
|
2698
|
+
*/
|
|
2699
|
+
function isBuffer(value) {
|
|
2700
|
+
return Buffer.isBuffer(value);
|
|
2701
|
+
} :
|
|
2702
|
+
/**
|
|
2703
|
+
* return false
|
|
2704
|
+
*
|
|
2705
|
+
* NOTE: for Buffer unsupported
|
|
2706
|
+
*
|
|
2707
|
+
* @return {boolean}
|
|
2708
|
+
*/
|
|
2709
|
+
function isBuffer() {
|
|
2710
|
+
return false;
|
|
2711
|
+
};
|
|
2712
|
+
const copy = isBufferFromExists ?
|
|
2713
|
+
/**
|
|
2714
|
+
* copy Buffer
|
|
2715
|
+
*
|
|
2716
|
+
* @param {Buffer} value
|
|
2717
|
+
* @return {Buffer}
|
|
2718
|
+
*/
|
|
2719
|
+
function copy(value) {
|
|
2720
|
+
return Buffer.from(value);
|
|
2721
|
+
} : isBufferExists ?
|
|
2722
|
+
/**
|
|
2723
|
+
* copy Buffer
|
|
2724
|
+
*
|
|
2725
|
+
* NOTE: for old node.js
|
|
2726
|
+
*
|
|
2727
|
+
* @param {Buffer} value
|
|
2728
|
+
* @return {Buffer}
|
|
2729
|
+
*/
|
|
2730
|
+
function copy(value) {
|
|
2731
|
+
return new Buffer(value);
|
|
2732
|
+
} :
|
|
2733
|
+
/**
|
|
2734
|
+
* shallow copy
|
|
2735
|
+
*
|
|
2736
|
+
* NOTE: for Buffer unsupported
|
|
2737
|
+
*
|
|
2738
|
+
* @param {*}
|
|
2739
|
+
* @return {*}
|
|
2740
|
+
*/
|
|
2741
|
+
function copy(value) {
|
|
2742
|
+
return value;
|
|
2743
|
+
};
|
|
2744
|
+
|
|
2745
|
+
/**
|
|
2746
|
+
* detect type of value
|
|
2747
|
+
*
|
|
2748
|
+
* @param {*} value
|
|
2749
|
+
* @return {string}
|
|
2750
|
+
*/
|
|
2751
|
+
function detectType(value) {
|
|
2752
|
+
// NOTE: isBuffer must execute before type-detect,
|
|
2753
|
+
// because type-detect returns 'Uint8Array'.
|
|
2754
|
+
if (isBuffer(value)) {
|
|
2755
|
+
return 'Buffer';
|
|
2756
|
+
}
|
|
2757
|
+
return typeDetect(value);
|
|
2758
|
+
}
|
|
2759
|
+
|
|
2760
|
+
/**
|
|
2761
|
+
* collection types
|
|
2762
|
+
*/
|
|
2763
|
+
const collectionTypeSet = new Set(['Arguments', 'Array', 'Map', 'Object', 'Set']);
|
|
2764
|
+
|
|
2765
|
+
/**
|
|
2766
|
+
* get value from collection
|
|
2767
|
+
*
|
|
2768
|
+
* @param {Array|Object|Map|Set} collection
|
|
2769
|
+
* @param {string|number|symbol} key
|
|
2770
|
+
* @param {string} [type=null]
|
|
2771
|
+
* @return {*}
|
|
2772
|
+
*/
|
|
2773
|
+
function get(collection, key, type = null) {
|
|
2774
|
+
const valueType = type || detectType(collection);
|
|
2775
|
+
switch (valueType) {
|
|
2776
|
+
case 'Arguments':
|
|
2777
|
+
case 'Array':
|
|
2778
|
+
case 'Object':
|
|
2779
|
+
return collection[key];
|
|
2780
|
+
case 'Map':
|
|
2781
|
+
return collection.get(key);
|
|
2782
|
+
case 'Set':
|
|
2783
|
+
// NOTE: Set.prototype.keys is alias of Set.prototype.values
|
|
2784
|
+
// it means key is equals value
|
|
2785
|
+
return key;
|
|
2786
|
+
}
|
|
2787
|
+
}
|
|
2788
|
+
|
|
2789
|
+
/**
|
|
2790
|
+
* check to type string is collection
|
|
2791
|
+
*
|
|
2792
|
+
* @param {string} type
|
|
2793
|
+
*/
|
|
2794
|
+
function isCollection(type) {
|
|
2795
|
+
return collectionTypeSet.has(type);
|
|
2796
|
+
}
|
|
2797
|
+
|
|
2798
|
+
/**
|
|
2799
|
+
* set value to collection
|
|
2800
|
+
*
|
|
2801
|
+
* @param {Array|Object|Map|Set} collection
|
|
2802
|
+
* @param {string|number|symbol} key
|
|
2803
|
+
* @param {*} value
|
|
2804
|
+
* @param {string} [type=null]
|
|
2805
|
+
* @return {Array|Object|Map|Set}
|
|
2806
|
+
*/
|
|
2807
|
+
function set(collection, key, value, type = null) {
|
|
2808
|
+
const valueType = type || detectType(collection);
|
|
2809
|
+
switch (valueType) {
|
|
2810
|
+
case 'Arguments':
|
|
2811
|
+
case 'Array':
|
|
2812
|
+
case 'Object':
|
|
2813
|
+
collection[key] = value;
|
|
2814
|
+
break;
|
|
2815
|
+
case 'Map':
|
|
2816
|
+
collection.set(key, value);
|
|
2817
|
+
break;
|
|
2818
|
+
case 'Set':
|
|
2819
|
+
collection.add(value);
|
|
2820
|
+
break;
|
|
2821
|
+
}
|
|
2822
|
+
return collection;
|
|
2823
|
+
}
|
|
2824
|
+
const freeGlobalThis = typeof globalThis !== 'undefined' && globalThis !== null && globalThis.Object === Object && globalThis;
|
|
2825
|
+
const freeGlobal = typeof __webpack_require__.g !== 'undefined' && __webpack_require__.g !== null && __webpack_require__.g.Object === Object && __webpack_require__.g;
|
|
2826
|
+
const freeSelf = typeof self !== 'undefined' && self !== null && self.Object === Object && self;
|
|
2827
|
+
const globalObject = freeGlobalThis || freeGlobal || freeSelf || Function('return this')();
|
|
2828
|
+
|
|
2829
|
+
/**
|
|
2830
|
+
* copy ArrayBuffer
|
|
2831
|
+
*
|
|
2832
|
+
* @param {ArrayBuffer} value
|
|
2833
|
+
* @return {ArrayBuffer}
|
|
2834
|
+
*/
|
|
2835
|
+
function copyArrayBuffer(value) {
|
|
2836
|
+
return value.slice(0);
|
|
2837
|
+
}
|
|
2838
|
+
|
|
2839
|
+
/**
|
|
2840
|
+
* copy Boolean
|
|
2841
|
+
*
|
|
2842
|
+
* @param {Boolean} value
|
|
2843
|
+
* @return {Boolean}
|
|
2844
|
+
*/
|
|
2845
|
+
function copyBoolean(value) {
|
|
2846
|
+
return new Boolean(value.valueOf());
|
|
2847
|
+
}
|
|
2848
|
+
|
|
2849
|
+
/**
|
|
2850
|
+
* copy DataView
|
|
2851
|
+
*
|
|
2852
|
+
* @param {DataView} value
|
|
2853
|
+
* @return {DataView}
|
|
2854
|
+
*/
|
|
2855
|
+
function copyDataView(value) {
|
|
2856
|
+
// TODO: copy ArrayBuffer?
|
|
2857
|
+
return new DataView(value.buffer);
|
|
2858
|
+
}
|
|
2859
|
+
|
|
2860
|
+
/**
|
|
2861
|
+
* copy Buffer
|
|
2862
|
+
*
|
|
2863
|
+
* @param {Buffer} value
|
|
2864
|
+
* @return {Buffer}
|
|
2865
|
+
*/
|
|
2866
|
+
function copyBuffer(value) {
|
|
2867
|
+
return copy(value);
|
|
2868
|
+
}
|
|
2869
|
+
|
|
2870
|
+
/**
|
|
2871
|
+
* copy Date
|
|
2872
|
+
*
|
|
2873
|
+
* @param {Date} value
|
|
2874
|
+
* @return {Date}
|
|
2875
|
+
*/
|
|
2876
|
+
function copyDate(value) {
|
|
2877
|
+
return new Date(value.getTime());
|
|
2878
|
+
}
|
|
2879
|
+
|
|
2880
|
+
/**
|
|
2881
|
+
* copy Number
|
|
2882
|
+
*
|
|
2883
|
+
* @param {Number} value
|
|
2884
|
+
* @return {Number}
|
|
2885
|
+
*/
|
|
2886
|
+
function copyNumber(value) {
|
|
2887
|
+
return new Number(value);
|
|
2888
|
+
}
|
|
2889
|
+
|
|
2890
|
+
/**
|
|
2891
|
+
* copy RegExp
|
|
2892
|
+
*
|
|
2893
|
+
* @param {RegExp} value
|
|
2894
|
+
* @return {RegExp}
|
|
2895
|
+
*/
|
|
2896
|
+
function copyRegExp(value) {
|
|
2897
|
+
return new RegExp(value.source, value.flags);
|
|
2898
|
+
}
|
|
2899
|
+
|
|
2900
|
+
/**
|
|
2901
|
+
* copy String
|
|
2902
|
+
*
|
|
2903
|
+
* @param {String} value
|
|
2904
|
+
* @return {String}
|
|
2905
|
+
*/
|
|
2906
|
+
function copyString(value) {
|
|
2907
|
+
return new String(value);
|
|
2908
|
+
}
|
|
2909
|
+
|
|
2910
|
+
/**
|
|
2911
|
+
* copy TypedArray
|
|
2912
|
+
*
|
|
2913
|
+
* @param {*} value
|
|
2914
|
+
* @return {*}
|
|
2915
|
+
*/
|
|
2916
|
+
function copyTypedArray(value, type) {
|
|
2917
|
+
const typedArray = globalObject[type];
|
|
2918
|
+
if (typedArray.from) {
|
|
2919
|
+
return globalObject[type].from(value);
|
|
2920
|
+
}
|
|
2921
|
+
return new globalObject[type](value);
|
|
2922
|
+
}
|
|
2923
|
+
|
|
2924
|
+
/**
|
|
2925
|
+
* shallow copy
|
|
2926
|
+
*
|
|
2927
|
+
* @param {*} value
|
|
2928
|
+
* @return {*}
|
|
2929
|
+
*/
|
|
2930
|
+
function shallowCopy(value) {
|
|
2931
|
+
return value;
|
|
2932
|
+
}
|
|
2933
|
+
|
|
2934
|
+
/**
|
|
2935
|
+
* get empty Array
|
|
2936
|
+
*
|
|
2937
|
+
* @return {Array}
|
|
2938
|
+
*/
|
|
2939
|
+
function getEmptyArray() {
|
|
2940
|
+
return [];
|
|
2941
|
+
}
|
|
2942
|
+
|
|
2943
|
+
/**
|
|
2944
|
+
* get empty Map
|
|
2945
|
+
*
|
|
2946
|
+
* @return {Map}
|
|
2947
|
+
*/
|
|
2948
|
+
function getEmptyMap() {
|
|
2949
|
+
return new Map();
|
|
2950
|
+
}
|
|
2951
|
+
|
|
2952
|
+
/**
|
|
2953
|
+
* get empty Object
|
|
2954
|
+
*
|
|
2955
|
+
* @return {Object}
|
|
2956
|
+
*/
|
|
2957
|
+
function getEmptyObject() {
|
|
2958
|
+
return {};
|
|
2959
|
+
}
|
|
2960
|
+
|
|
2961
|
+
/**
|
|
2962
|
+
* get empty Set
|
|
2963
|
+
*
|
|
2964
|
+
* @return {Set}
|
|
2965
|
+
*/
|
|
2966
|
+
function getEmptySet() {
|
|
2967
|
+
return new Set();
|
|
2968
|
+
}
|
|
2969
|
+
var copyMap = new Map([
|
|
2970
|
+
// deep copy
|
|
2971
|
+
['ArrayBuffer', copyArrayBuffer], ['Boolean', copyBoolean], ['Buffer', copyBuffer], ['DataView', copyDataView], ['Date', copyDate], ['Number', copyNumber], ['RegExp', copyRegExp], ['String', copyString],
|
|
2972
|
+
// typed arrays
|
|
2973
|
+
// TODO: pass bound function
|
|
2974
|
+
['Float32Array', copyTypedArray], ['Float64Array', copyTypedArray], ['Int16Array', copyTypedArray], ['Int32Array', copyTypedArray], ['Int8Array', copyTypedArray], ['Uint16Array', copyTypedArray], ['Uint32Array', copyTypedArray], ['Uint8Array', copyTypedArray], ['Uint8ClampedArray', copyTypedArray],
|
|
2975
|
+
// shallow copy
|
|
2976
|
+
['Array Iterator', shallowCopy], ['Map Iterator', shallowCopy], ['Promise', shallowCopy], ['Set Iterator', shallowCopy], ['String Iterator', shallowCopy], ['function', shallowCopy], ['global', shallowCopy],
|
|
2977
|
+
// NOTE: WeakMap and WeakSet cannot get entries
|
|
2978
|
+
['WeakMap', shallowCopy], ['WeakSet', shallowCopy],
|
|
2979
|
+
// primitives
|
|
2980
|
+
['boolean', shallowCopy], ['null', shallowCopy], ['number', shallowCopy], ['string', shallowCopy], ['symbol', shallowCopy], ['undefined', shallowCopy],
|
|
2981
|
+
// collections
|
|
2982
|
+
// NOTE: return empty value, because recursively copy later.
|
|
2983
|
+
['Arguments', getEmptyArray], ['Array', getEmptyArray], ['Map', getEmptyMap], ['Object', getEmptyObject], ['Set', getEmptySet]
|
|
2984
|
+
|
|
2985
|
+
// NOTE: type-detect returns following types
|
|
2986
|
+
// 'Location'
|
|
2987
|
+
// 'Document'
|
|
2988
|
+
// 'MimeTypeArray'
|
|
2989
|
+
// 'PluginArray'
|
|
2990
|
+
// 'HTMLQuoteElement'
|
|
2991
|
+
// 'HTMLTableDataCellElement'
|
|
2992
|
+
// 'HTMLTableHeaderCellElement'
|
|
2993
|
+
|
|
2994
|
+
// TODO: is type-detect never return 'object'?
|
|
2995
|
+
// 'object'
|
|
2996
|
+
]);
|
|
2997
|
+
|
|
2998
|
+
/**
|
|
2999
|
+
* no operation
|
|
3000
|
+
*/
|
|
3001
|
+
function noop() {}
|
|
3002
|
+
|
|
3003
|
+
/**
|
|
3004
|
+
* copy value
|
|
3005
|
+
*
|
|
3006
|
+
* @param {*} value
|
|
3007
|
+
* @param {string} [type=null]
|
|
3008
|
+
* @param {Function} [customizer=noop]
|
|
3009
|
+
* @return {*}
|
|
3010
|
+
*/
|
|
3011
|
+
function copy$1(value, type = null, customizer = noop) {
|
|
3012
|
+
if (arguments.length === 2 && typeof type === 'function') {
|
|
3013
|
+
customizer = type;
|
|
3014
|
+
type = null;
|
|
3015
|
+
}
|
|
3016
|
+
const valueType = type || detectType(value);
|
|
3017
|
+
const copyFunction = copyMap.get(valueType);
|
|
3018
|
+
if (valueType === 'Object') {
|
|
3019
|
+
const result = customizer(value, valueType);
|
|
3020
|
+
if (result !== undefined) {
|
|
3021
|
+
return result;
|
|
3022
|
+
}
|
|
3023
|
+
}
|
|
3024
|
+
|
|
3025
|
+
// NOTE: TypedArray needs pass type to argument
|
|
3026
|
+
return copyFunction ? copyFunction(value, valueType) : value;
|
|
3027
|
+
}
|
|
3028
|
+
|
|
3029
|
+
/**
|
|
3030
|
+
* deepcopy function
|
|
3031
|
+
*
|
|
3032
|
+
* @param {*} value
|
|
3033
|
+
* @param {Object|Function} [options]
|
|
3034
|
+
* @return {*}
|
|
3035
|
+
*/
|
|
3036
|
+
function deepcopy(value, options = {}) {
|
|
3037
|
+
if (typeof options === 'function') {
|
|
3038
|
+
options = {
|
|
3039
|
+
customizer: options
|
|
3040
|
+
};
|
|
3041
|
+
}
|
|
3042
|
+
const {
|
|
3043
|
+
// TODO: before/after customizer
|
|
3044
|
+
customizer
|
|
3045
|
+
// TODO: max depth
|
|
3046
|
+
// depth = Infinity,
|
|
3047
|
+
} = options;
|
|
3048
|
+
const valueType = detectType(value);
|
|
3049
|
+
if (!isCollection(valueType)) {
|
|
3050
|
+
return recursiveCopy(value, null, null, null);
|
|
3051
|
+
}
|
|
3052
|
+
const copiedValue = copy$1(value, valueType, customizer);
|
|
3053
|
+
const references = new WeakMap([[value, copiedValue]]);
|
|
3054
|
+
const visited = new WeakSet([value]);
|
|
3055
|
+
return recursiveCopy(value, copiedValue, references, visited);
|
|
3056
|
+
}
|
|
3057
|
+
|
|
3058
|
+
/**
|
|
3059
|
+
* recursively copy
|
|
3060
|
+
*
|
|
3061
|
+
* @param {*} value target value
|
|
3062
|
+
* @param {*} clone clone of value
|
|
3063
|
+
* @param {WeakMap} references visited references of clone
|
|
3064
|
+
* @param {WeakSet} visited visited references of value
|
|
3065
|
+
* @param {Function} customizer user customize function
|
|
3066
|
+
* @return {*}
|
|
3067
|
+
*/
|
|
3068
|
+
function recursiveCopy(value, clone, references, visited, customizer) {
|
|
3069
|
+
const type = detectType(value);
|
|
3070
|
+
const copiedValue = copy$1(value, type);
|
|
3071
|
+
|
|
3072
|
+
// return if not a collection value
|
|
3073
|
+
if (!isCollection(type)) {
|
|
3074
|
+
return copiedValue;
|
|
3075
|
+
}
|
|
3076
|
+
let keys;
|
|
3077
|
+
switch (type) {
|
|
3078
|
+
case 'Arguments':
|
|
3079
|
+
case 'Array':
|
|
3080
|
+
keys = Object.keys(value);
|
|
3081
|
+
break;
|
|
3082
|
+
case 'Object':
|
|
3083
|
+
keys = Object.keys(value);
|
|
3084
|
+
keys.push(...Object.getOwnPropertySymbols(value));
|
|
3085
|
+
break;
|
|
3086
|
+
case 'Map':
|
|
3087
|
+
case 'Set':
|
|
3088
|
+
keys = value.keys();
|
|
3089
|
+
break;
|
|
3090
|
+
}
|
|
3091
|
+
|
|
3092
|
+
// walk within collection with iterator
|
|
3093
|
+
for (let collectionKey of keys) {
|
|
3094
|
+
const collectionValue = get(value, collectionKey, type);
|
|
3095
|
+
if (visited.has(collectionValue)) {
|
|
3096
|
+
// for [Circular]
|
|
3097
|
+
set(clone, collectionKey, references.get(collectionValue), type);
|
|
3098
|
+
} else {
|
|
3099
|
+
const collectionValueType = detectType(collectionValue);
|
|
3100
|
+
const copiedCollectionValue = copy$1(collectionValue, collectionValueType);
|
|
3101
|
+
|
|
3102
|
+
// save reference if value is collection
|
|
3103
|
+
if (isCollection(collectionValueType)) {
|
|
3104
|
+
references.set(collectionValue, copiedCollectionValue);
|
|
3105
|
+
visited.add(collectionValue);
|
|
3106
|
+
}
|
|
3107
|
+
set(clone, collectionKey, recursiveCopy(collectionValue, copiedCollectionValue, references, visited), type);
|
|
3108
|
+
}
|
|
3109
|
+
}
|
|
3110
|
+
|
|
3111
|
+
// TODO: isSealed/isFrozen/isExtensible
|
|
3112
|
+
|
|
3113
|
+
return clone;
|
|
3114
|
+
}
|
|
3115
|
+
return deepcopy;
|
|
3116
|
+
});
|
|
3117
|
+
|
|
3118
|
+
/***/ }),
|
|
3119
|
+
|
|
3120
|
+
/***/ 6955:
|
|
3121
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
3122
|
+
|
|
3123
|
+
"use strict";
|
|
3124
|
+
|
|
3125
|
+
var TO_STRING_TAG_SUPPORT = __webpack_require__(2140);
|
|
3126
|
+
var isCallable = __webpack_require__(4901);
|
|
3127
|
+
var classofRaw = __webpack_require__(2195);
|
|
3128
|
+
var wellKnownSymbol = __webpack_require__(8227);
|
|
3129
|
+
|
|
3130
|
+
var TO_STRING_TAG = wellKnownSymbol('toStringTag');
|
|
3131
|
+
var $Object = Object;
|
|
3132
|
+
|
|
3133
|
+
// ES3 wrong here
|
|
3134
|
+
var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) === 'Arguments';
|
|
3135
|
+
|
|
3136
|
+
// fallback for IE11 Script Access Denied error
|
|
3137
|
+
var tryGet = function (it, key) {
|
|
3138
|
+
try {
|
|
3139
|
+
return it[key];
|
|
3140
|
+
} catch (error) { /* empty */ }
|
|
3141
|
+
};
|
|
3142
|
+
|
|
3143
|
+
// getting tag from ES6+ `Object.prototype.toString`
|
|
3144
|
+
module.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
|
|
3145
|
+
var O, tag, result;
|
|
3146
|
+
return it === undefined ? 'Undefined' : it === null ? 'Null'
|
|
3147
|
+
// @@toStringTag case
|
|
3148
|
+
: typeof (tag = tryGet(O = $Object(it), TO_STRING_TAG)) == 'string' ? tag
|
|
3149
|
+
// builtinTag case
|
|
3150
|
+
: CORRECT_ARGUMENTS ? classofRaw(O)
|
|
3151
|
+
// ES3 arguments fallback
|
|
3152
|
+
: (result = classofRaw(O)) === 'Object' && isCallable(O.callee) ? 'Arguments' : result;
|
|
3153
|
+
};
|
|
3154
|
+
|
|
3155
|
+
|
|
3156
|
+
/***/ }),
|
|
3157
|
+
|
|
3158
|
+
/***/ 6969:
|
|
3159
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
3160
|
+
|
|
3161
|
+
"use strict";
|
|
3162
|
+
|
|
3163
|
+
var toPrimitive = __webpack_require__(2777);
|
|
3164
|
+
var isSymbol = __webpack_require__(757);
|
|
3165
|
+
|
|
3166
|
+
// `ToPropertyKey` abstract operation
|
|
3167
|
+
// https://tc39.es/ecma262/#sec-topropertykey
|
|
3168
|
+
module.exports = function (argument) {
|
|
3169
|
+
var key = toPrimitive(argument, 'string');
|
|
3170
|
+
return isSymbol(key) ? key : key + '';
|
|
3171
|
+
};
|
|
3172
|
+
|
|
3173
|
+
|
|
3174
|
+
/***/ }),
|
|
3175
|
+
|
|
3176
|
+
/***/ 6980:
|
|
3177
|
+
/***/ (function(module) {
|
|
3178
|
+
|
|
3179
|
+
"use strict";
|
|
3180
|
+
|
|
3181
|
+
module.exports = function (bitmap, value) {
|
|
3182
|
+
return {
|
|
3183
|
+
enumerable: !(bitmap & 1),
|
|
3184
|
+
configurable: !(bitmap & 2),
|
|
3185
|
+
writable: !(bitmap & 4),
|
|
3186
|
+
value: value
|
|
3187
|
+
};
|
|
3188
|
+
};
|
|
3189
|
+
|
|
3190
|
+
|
|
3191
|
+
/***/ }),
|
|
3192
|
+
|
|
3193
|
+
/***/ 7040:
|
|
3194
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
3195
|
+
|
|
3196
|
+
"use strict";
|
|
3197
|
+
|
|
3198
|
+
/* eslint-disable es/no-symbol -- required for testing */
|
|
3199
|
+
var NATIVE_SYMBOL = __webpack_require__(4495);
|
|
3200
|
+
|
|
3201
|
+
module.exports = NATIVE_SYMBOL &&
|
|
3202
|
+
!Symbol.sham &&
|
|
3203
|
+
typeof Symbol.iterator == 'symbol';
|
|
3204
|
+
|
|
3205
|
+
|
|
3206
|
+
/***/ }),
|
|
3207
|
+
|
|
3208
|
+
/***/ 7055:
|
|
3209
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
3210
|
+
|
|
3211
|
+
"use strict";
|
|
3212
|
+
|
|
3213
|
+
var uncurryThis = __webpack_require__(9504);
|
|
3214
|
+
var fails = __webpack_require__(9039);
|
|
3215
|
+
var classof = __webpack_require__(2195);
|
|
3216
|
+
|
|
3217
|
+
var $Object = Object;
|
|
3218
|
+
var split = uncurryThis(''.split);
|
|
3219
|
+
|
|
3220
|
+
// fallback for non-array-like ES3 and non-enumerable old V8 strings
|
|
3221
|
+
module.exports = fails(function () {
|
|
3222
|
+
// throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
|
|
3223
|
+
// eslint-disable-next-line no-prototype-builtins -- safe
|
|
3224
|
+
return !$Object('z').propertyIsEnumerable(0);
|
|
3225
|
+
}) ? function (it) {
|
|
3226
|
+
return classof(it) === 'String' ? split(it, '') : $Object(it);
|
|
3227
|
+
} : $Object;
|
|
3228
|
+
|
|
3229
|
+
|
|
3230
|
+
/***/ }),
|
|
3231
|
+
|
|
3232
|
+
/***/ 7080:
|
|
3233
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
3234
|
+
|
|
3235
|
+
"use strict";
|
|
3236
|
+
|
|
3237
|
+
var has = (__webpack_require__(4402).has);
|
|
3238
|
+
|
|
3239
|
+
// Perform ? RequireInternalSlot(M, [[SetData]])
|
|
3240
|
+
module.exports = function (it) {
|
|
3241
|
+
has(it);
|
|
3242
|
+
return it;
|
|
3243
|
+
};
|
|
3244
|
+
|
|
3245
|
+
|
|
3246
|
+
/***/ }),
|
|
3247
|
+
|
|
3248
|
+
/***/ 7347:
|
|
3249
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
3250
|
+
|
|
3251
|
+
"use strict";
|
|
3252
|
+
|
|
3253
|
+
var DESCRIPTORS = __webpack_require__(3724);
|
|
3254
|
+
var call = __webpack_require__(9565);
|
|
3255
|
+
var propertyIsEnumerableModule = __webpack_require__(8773);
|
|
3256
|
+
var createPropertyDescriptor = __webpack_require__(6980);
|
|
3257
|
+
var toIndexedObject = __webpack_require__(5397);
|
|
3258
|
+
var toPropertyKey = __webpack_require__(6969);
|
|
3259
|
+
var hasOwn = __webpack_require__(9297);
|
|
3260
|
+
var IE8_DOM_DEFINE = __webpack_require__(5917);
|
|
3261
|
+
|
|
3262
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
3263
|
+
var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
3264
|
+
|
|
3265
|
+
// `Object.getOwnPropertyDescriptor` method
|
|
3266
|
+
// https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
|
|
3267
|
+
exports.f = DESCRIPTORS ? $getOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {
|
|
3268
|
+
O = toIndexedObject(O);
|
|
3269
|
+
P = toPropertyKey(P);
|
|
3270
|
+
if (IE8_DOM_DEFINE) try {
|
|
3271
|
+
return $getOwnPropertyDescriptor(O, P);
|
|
3272
|
+
} catch (error) { /* empty */ }
|
|
3273
|
+
if (hasOwn(O, P)) return createPropertyDescriptor(!call(propertyIsEnumerableModule.f, O, P), O[P]);
|
|
3274
|
+
};
|
|
3275
|
+
|
|
3276
|
+
|
|
3277
|
+
/***/ }),
|
|
3278
|
+
|
|
3279
|
+
/***/ 7394:
|
|
3280
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
3281
|
+
|
|
3282
|
+
"use strict";
|
|
3283
|
+
|
|
3284
|
+
var globalThis = __webpack_require__(4576);
|
|
3285
|
+
var uncurryThisAccessor = __webpack_require__(6706);
|
|
3286
|
+
var classof = __webpack_require__(2195);
|
|
3287
|
+
|
|
3288
|
+
var ArrayBuffer = globalThis.ArrayBuffer;
|
|
3289
|
+
var TypeError = globalThis.TypeError;
|
|
3290
|
+
|
|
3291
|
+
// Includes
|
|
3292
|
+
// - Perform ? RequireInternalSlot(O, [[ArrayBufferData]]).
|
|
3293
|
+
// - If IsSharedArrayBuffer(O) is true, throw a TypeError exception.
|
|
3294
|
+
module.exports = ArrayBuffer && uncurryThisAccessor(ArrayBuffer.prototype, 'byteLength', 'get') || function (O) {
|
|
3295
|
+
if (classof(O) !== 'ArrayBuffer') throw new TypeError('ArrayBuffer expected');
|
|
3296
|
+
return O.byteLength;
|
|
3297
|
+
};
|
|
3298
|
+
|
|
3299
|
+
|
|
3300
|
+
/***/ }),
|
|
3301
|
+
|
|
3302
|
+
/***/ 7476:
|
|
3303
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
3304
|
+
|
|
3305
|
+
"use strict";
|
|
3306
|
+
|
|
3307
|
+
var classofRaw = __webpack_require__(2195);
|
|
3308
|
+
var uncurryThis = __webpack_require__(9504);
|
|
3309
|
+
|
|
3310
|
+
module.exports = function (fn) {
|
|
3311
|
+
// Nashorn bug:
|
|
3312
|
+
// https://github.com/zloirock/core-js/issues/1128
|
|
3313
|
+
// https://github.com/zloirock/core-js/issues/1130
|
|
3314
|
+
if (classofRaw(fn) === 'Function') return uncurryThis(fn);
|
|
3315
|
+
};
|
|
3316
|
+
|
|
3317
|
+
|
|
3318
|
+
/***/ }),
|
|
3319
|
+
|
|
3320
|
+
/***/ 7588:
|
|
3321
|
+
/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
|
|
3322
|
+
|
|
3323
|
+
"use strict";
|
|
3324
|
+
|
|
3325
|
+
var $ = __webpack_require__(6518);
|
|
3326
|
+
var call = __webpack_require__(9565);
|
|
3327
|
+
var iterate = __webpack_require__(2652);
|
|
3328
|
+
var aCallable = __webpack_require__(9306);
|
|
3329
|
+
var anObject = __webpack_require__(932);
|
|
3330
|
+
var getIteratorDirect = __webpack_require__(1767);
|
|
3331
|
+
var iteratorClose = __webpack_require__(9539);
|
|
3332
|
+
var iteratorHelperWithoutClosingOnEarlyError = __webpack_require__(4549);
|
|
3333
|
+
|
|
3334
|
+
var forEachWithoutClosingOnEarlyError = iteratorHelperWithoutClosingOnEarlyError('forEach', TypeError);
|
|
3335
|
+
|
|
3336
|
+
// `Iterator.prototype.forEach` method
|
|
3337
|
+
// https://tc39.es/ecma262/#sec-iterator.prototype.foreach
|
|
3338
|
+
$({ target: 'Iterator', proto: true, real: true, forced: forEachWithoutClosingOnEarlyError }, {
|
|
3339
|
+
forEach: function forEach(fn) {
|
|
3340
|
+
anObject(this);
|
|
3341
|
+
try {
|
|
3342
|
+
aCallable(fn);
|
|
3343
|
+
} catch (error) {
|
|
3344
|
+
iteratorClose(this, 'throw', error);
|
|
3345
|
+
}
|
|
3346
|
+
|
|
3347
|
+
if (forEachWithoutClosingOnEarlyError) return call(forEachWithoutClosingOnEarlyError, this, fn);
|
|
3348
|
+
|
|
3349
|
+
var record = getIteratorDirect(this);
|
|
3350
|
+
var counter = 0;
|
|
3351
|
+
iterate(record, function (value) {
|
|
3352
|
+
fn(value, counter++);
|
|
3353
|
+
}, { IS_RECORD: true });
|
|
3354
|
+
}
|
|
3355
|
+
});
|
|
3356
|
+
|
|
3357
|
+
|
|
3358
|
+
/***/ }),
|
|
3359
|
+
|
|
3360
|
+
/***/ 7629:
|
|
3361
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
3362
|
+
|
|
3363
|
+
"use strict";
|
|
3364
|
+
|
|
3365
|
+
var IS_PURE = __webpack_require__(6395);
|
|
3366
|
+
var globalThis = __webpack_require__(4576);
|
|
3367
|
+
var defineGlobalProperty = __webpack_require__(9433);
|
|
3368
|
+
|
|
3369
|
+
var SHARED = '__core-js_shared__';
|
|
3370
|
+
var store = module.exports = globalThis[SHARED] || defineGlobalProperty(SHARED, {});
|
|
3371
|
+
|
|
3372
|
+
(store.versions || (store.versions = [])).push({
|
|
3373
|
+
version: '3.47.0',
|
|
3374
|
+
mode: IS_PURE ? 'pure' : 'global',
|
|
3375
|
+
copyright: '© 2014-2025 Denis Pushkarev (zloirock.ru), 2025 CoreJS Company (core-js.io)',
|
|
3376
|
+
license: 'https://github.com/zloirock/core-js/blob/v3.47.0/LICENSE',
|
|
3377
|
+
source: 'https://github.com/zloirock/core-js'
|
|
3378
|
+
});
|
|
3379
|
+
|
|
3380
|
+
|
|
3381
|
+
/***/ }),
|
|
3382
|
+
|
|
3383
|
+
/***/ 7642:
|
|
3384
|
+
/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
|
|
3385
|
+
|
|
3386
|
+
"use strict";
|
|
3387
|
+
|
|
3388
|
+
var $ = __webpack_require__(6518);
|
|
3389
|
+
var difference = __webpack_require__(3440);
|
|
3390
|
+
var fails = __webpack_require__(9039);
|
|
3391
|
+
var setMethodAcceptSetLike = __webpack_require__(4916);
|
|
3392
|
+
|
|
3393
|
+
var SET_LIKE_INCORRECT_BEHAVIOR = !setMethodAcceptSetLike('difference', function (result) {
|
|
3394
|
+
return result.size === 0;
|
|
3395
|
+
});
|
|
3396
|
+
|
|
3397
|
+
var FORCED = SET_LIKE_INCORRECT_BEHAVIOR || fails(function () {
|
|
3398
|
+
// https://bugs.webkit.org/show_bug.cgi?id=288595
|
|
3399
|
+
var setLike = {
|
|
3400
|
+
size: 1,
|
|
3401
|
+
has: function () { return true; },
|
|
3402
|
+
keys: function () {
|
|
3403
|
+
var index = 0;
|
|
3404
|
+
return {
|
|
3405
|
+
next: function () {
|
|
3406
|
+
var done = index++ > 1;
|
|
3407
|
+
if (baseSet.has(1)) baseSet.clear();
|
|
3408
|
+
return { done: done, value: 2 };
|
|
3409
|
+
}
|
|
3410
|
+
};
|
|
3411
|
+
}
|
|
3412
|
+
};
|
|
3413
|
+
// eslint-disable-next-line es/no-set -- testing
|
|
3414
|
+
var baseSet = new Set([1, 2, 3, 4]);
|
|
3415
|
+
// eslint-disable-next-line es/no-set-prototype-difference -- testing
|
|
3416
|
+
return baseSet.difference(setLike).size !== 3;
|
|
3417
|
+
});
|
|
3418
|
+
|
|
3419
|
+
// `Set.prototype.difference` method
|
|
3420
|
+
// https://tc39.es/ecma262/#sec-set.prototype.difference
|
|
3421
|
+
$({ target: 'Set', proto: true, real: true, forced: FORCED }, {
|
|
3422
|
+
difference: difference
|
|
3423
|
+
});
|
|
3424
|
+
|
|
3425
|
+
|
|
3426
|
+
/***/ }),
|
|
3427
|
+
|
|
3428
|
+
/***/ 7657:
|
|
3429
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
3430
|
+
|
|
3431
|
+
"use strict";
|
|
3432
|
+
|
|
3433
|
+
var fails = __webpack_require__(9039);
|
|
3434
|
+
var isCallable = __webpack_require__(4901);
|
|
3435
|
+
var isObject = __webpack_require__(34);
|
|
3436
|
+
var create = __webpack_require__(2360);
|
|
3437
|
+
var getPrototypeOf = __webpack_require__(2787);
|
|
3438
|
+
var defineBuiltIn = __webpack_require__(6840);
|
|
3439
|
+
var wellKnownSymbol = __webpack_require__(8227);
|
|
3440
|
+
var IS_PURE = __webpack_require__(6395);
|
|
3441
|
+
|
|
3442
|
+
var ITERATOR = wellKnownSymbol('iterator');
|
|
3443
|
+
var BUGGY_SAFARI_ITERATORS = false;
|
|
3444
|
+
|
|
3445
|
+
// `%IteratorPrototype%` object
|
|
3446
|
+
// https://tc39.es/ecma262/#sec-%iteratorprototype%-object
|
|
3447
|
+
var IteratorPrototype, PrototypeOfArrayIteratorPrototype, arrayIterator;
|
|
3448
|
+
|
|
3449
|
+
/* eslint-disable es/no-array-prototype-keys -- safe */
|
|
3450
|
+
if ([].keys) {
|
|
3451
|
+
arrayIterator = [].keys();
|
|
3452
|
+
// Safari 8 has buggy iterators w/o `next`
|
|
3453
|
+
if (!('next' in arrayIterator)) BUGGY_SAFARI_ITERATORS = true;
|
|
3454
|
+
else {
|
|
3455
|
+
PrototypeOfArrayIteratorPrototype = getPrototypeOf(getPrototypeOf(arrayIterator));
|
|
3456
|
+
if (PrototypeOfArrayIteratorPrototype !== Object.prototype) IteratorPrototype = PrototypeOfArrayIteratorPrototype;
|
|
3457
|
+
}
|
|
3458
|
+
}
|
|
3459
|
+
|
|
3460
|
+
var NEW_ITERATOR_PROTOTYPE = !isObject(IteratorPrototype) || fails(function () {
|
|
3461
|
+
var test = {};
|
|
3462
|
+
// FF44- legacy iterators case
|
|
3463
|
+
return IteratorPrototype[ITERATOR].call(test) !== test;
|
|
3464
|
+
});
|
|
3465
|
+
|
|
3466
|
+
if (NEW_ITERATOR_PROTOTYPE) IteratorPrototype = {};
|
|
3467
|
+
else if (IS_PURE) IteratorPrototype = create(IteratorPrototype);
|
|
3468
|
+
|
|
3469
|
+
// `%IteratorPrototype%[@@iterator]()` method
|
|
3470
|
+
// https://tc39.es/ecma262/#sec-%iteratorprototype%-@@iterator
|
|
3471
|
+
if (!isCallable(IteratorPrototype[ITERATOR])) {
|
|
3472
|
+
defineBuiltIn(IteratorPrototype, ITERATOR, function () {
|
|
3473
|
+
return this;
|
|
3474
|
+
});
|
|
3475
|
+
}
|
|
3476
|
+
|
|
3477
|
+
module.exports = {
|
|
3478
|
+
IteratorPrototype: IteratorPrototype,
|
|
3479
|
+
BUGGY_SAFARI_ITERATORS: BUGGY_SAFARI_ITERATORS
|
|
3480
|
+
};
|
|
3481
|
+
|
|
3482
|
+
|
|
3483
|
+
/***/ }),
|
|
3484
|
+
|
|
3485
|
+
/***/ 7696:
|
|
3486
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
3487
|
+
|
|
3488
|
+
"use strict";
|
|
3489
|
+
|
|
3490
|
+
var toIntegerOrInfinity = __webpack_require__(1291);
|
|
3491
|
+
var toLength = __webpack_require__(8014);
|
|
3492
|
+
|
|
3493
|
+
var $RangeError = RangeError;
|
|
3494
|
+
|
|
3495
|
+
// `ToIndex` abstract operation
|
|
3496
|
+
// https://tc39.es/ecma262/#sec-toindex
|
|
3497
|
+
module.exports = function (it) {
|
|
3498
|
+
if (it === undefined) return 0;
|
|
3499
|
+
var number = toIntegerOrInfinity(it);
|
|
3500
|
+
var length = toLength(number);
|
|
3501
|
+
if (number !== length) throw new $RangeError('Wrong length or index');
|
|
3502
|
+
return length;
|
|
3503
|
+
};
|
|
3504
|
+
|
|
3505
|
+
|
|
3506
|
+
/***/ }),
|
|
3507
|
+
|
|
3508
|
+
/***/ 7740:
|
|
3509
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
3510
|
+
|
|
3511
|
+
"use strict";
|
|
3512
|
+
|
|
3513
|
+
var hasOwn = __webpack_require__(9297);
|
|
3514
|
+
var ownKeys = __webpack_require__(5031);
|
|
3515
|
+
var getOwnPropertyDescriptorModule = __webpack_require__(7347);
|
|
3516
|
+
var definePropertyModule = __webpack_require__(4913);
|
|
3517
|
+
|
|
3518
|
+
module.exports = function (target, source, exceptions) {
|
|
3519
|
+
var keys = ownKeys(source);
|
|
3520
|
+
var defineProperty = definePropertyModule.f;
|
|
3521
|
+
var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
|
|
3522
|
+
for (var i = 0; i < keys.length; i++) {
|
|
3523
|
+
var key = keys[i];
|
|
3524
|
+
if (!hasOwn(target, key) && !(exceptions && hasOwn(exceptions, key))) {
|
|
3525
|
+
defineProperty(target, key, getOwnPropertyDescriptor(source, key));
|
|
3526
|
+
}
|
|
3527
|
+
}
|
|
3528
|
+
};
|
|
3529
|
+
|
|
3530
|
+
|
|
3531
|
+
/***/ }),
|
|
3532
|
+
|
|
3533
|
+
/***/ 7750:
|
|
3534
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
3535
|
+
|
|
3536
|
+
"use strict";
|
|
3537
|
+
|
|
3538
|
+
var isNullOrUndefined = __webpack_require__(4117);
|
|
3539
|
+
|
|
3540
|
+
var $TypeError = TypeError;
|
|
3541
|
+
|
|
3542
|
+
// `RequireObjectCoercible` abstract operation
|
|
3543
|
+
// https://tc39.es/ecma262/#sec-requireobjectcoercible
|
|
3544
|
+
module.exports = function (it) {
|
|
3545
|
+
if (isNullOrUndefined(it)) throw new $TypeError("Can't call method on " + it);
|
|
3546
|
+
return it;
|
|
3547
|
+
};
|
|
3548
|
+
|
|
3549
|
+
|
|
3550
|
+
/***/ }),
|
|
3551
|
+
|
|
3552
|
+
/***/ 7751:
|
|
3553
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
3554
|
+
|
|
3555
|
+
"use strict";
|
|
3556
|
+
|
|
3557
|
+
var globalThis = __webpack_require__(4576);
|
|
3558
|
+
var isCallable = __webpack_require__(4901);
|
|
3559
|
+
|
|
3560
|
+
var aFunction = function (argument) {
|
|
3561
|
+
return isCallable(argument) ? argument : undefined;
|
|
3562
|
+
};
|
|
3563
|
+
|
|
3564
|
+
module.exports = function (namespace, method) {
|
|
3565
|
+
return arguments.length < 2 ? aFunction(globalThis[namespace]) : globalThis[namespace] && globalThis[namespace][method];
|
|
3566
|
+
};
|
|
3567
|
+
|
|
3568
|
+
|
|
3569
|
+
/***/ }),
|
|
3570
|
+
|
|
3571
|
+
/***/ 7811:
|
|
3572
|
+
/***/ (function(module) {
|
|
3573
|
+
|
|
3574
|
+
"use strict";
|
|
3575
|
+
|
|
3576
|
+
// eslint-disable-next-line es/no-typed-arrays -- safe
|
|
3577
|
+
module.exports = typeof ArrayBuffer != 'undefined' && typeof DataView != 'undefined';
|
|
3578
|
+
|
|
3579
|
+
|
|
3580
|
+
/***/ }),
|
|
3581
|
+
|
|
3582
|
+
/***/ 7936:
|
|
3583
|
+
/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
|
|
3584
|
+
|
|
3585
|
+
"use strict";
|
|
3586
|
+
|
|
3587
|
+
var $ = __webpack_require__(6518);
|
|
3588
|
+
var $transfer = __webpack_require__(5636);
|
|
3589
|
+
|
|
3590
|
+
// `ArrayBuffer.prototype.transferToFixedLength` method
|
|
3591
|
+
// https://tc39.es/ecma262/#sec-arraybuffer.prototype.transfertofixedlength
|
|
3592
|
+
if ($transfer) $({ target: 'ArrayBuffer', proto: true }, {
|
|
3593
|
+
transferToFixedLength: function transferToFixedLength() {
|
|
3594
|
+
return $transfer(this, arguments.length ? arguments[0] : undefined, false);
|
|
3595
|
+
}
|
|
3596
|
+
});
|
|
3597
|
+
|
|
3598
|
+
|
|
3599
|
+
/***/ }),
|
|
3600
|
+
|
|
3601
|
+
/***/ 8004:
|
|
3602
|
+
/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
|
|
3603
|
+
|
|
3604
|
+
"use strict";
|
|
3605
|
+
|
|
3606
|
+
var $ = __webpack_require__(6518);
|
|
3607
|
+
var fails = __webpack_require__(9039);
|
|
3608
|
+
var intersection = __webpack_require__(8750);
|
|
3609
|
+
var setMethodAcceptSetLike = __webpack_require__(4916);
|
|
3610
|
+
|
|
3611
|
+
var INCORRECT = !setMethodAcceptSetLike('intersection', function (result) {
|
|
3612
|
+
return result.size === 2 && result.has(1) && result.has(2);
|
|
3613
|
+
}) || fails(function () {
|
|
3614
|
+
// eslint-disable-next-line es/no-array-from, es/no-set, es/no-set-prototype-intersection -- testing
|
|
3615
|
+
return String(Array.from(new Set([1, 2, 3]).intersection(new Set([3, 2])))) !== '3,2';
|
|
3616
|
+
});
|
|
3617
|
+
|
|
3618
|
+
// `Set.prototype.intersection` method
|
|
3619
|
+
// https://tc39.es/ecma262/#sec-set.prototype.intersection
|
|
3620
|
+
$({ target: 'Set', proto: true, real: true, forced: INCORRECT }, {
|
|
3621
|
+
intersection: intersection
|
|
3622
|
+
});
|
|
3623
|
+
|
|
3624
|
+
|
|
3625
|
+
/***/ }),
|
|
3626
|
+
|
|
3627
|
+
/***/ 8014:
|
|
3628
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
3629
|
+
|
|
3630
|
+
"use strict";
|
|
3631
|
+
|
|
3632
|
+
var toIntegerOrInfinity = __webpack_require__(1291);
|
|
3633
|
+
|
|
3634
|
+
var min = Math.min;
|
|
3635
|
+
|
|
3636
|
+
// `ToLength` abstract operation
|
|
3637
|
+
// https://tc39.es/ecma262/#sec-tolength
|
|
3638
|
+
module.exports = function (argument) {
|
|
3639
|
+
var len = toIntegerOrInfinity(argument);
|
|
3640
|
+
return len > 0 ? min(len, 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
|
|
3641
|
+
};
|
|
3642
|
+
|
|
3643
|
+
|
|
3644
|
+
/***/ }),
|
|
3645
|
+
|
|
3646
|
+
/***/ 8100:
|
|
3647
|
+
/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
|
|
3648
|
+
|
|
3649
|
+
"use strict";
|
|
3650
|
+
|
|
3651
|
+
var $ = __webpack_require__(6518);
|
|
3652
|
+
var $transfer = __webpack_require__(5636);
|
|
3653
|
+
|
|
3654
|
+
// `ArrayBuffer.prototype.transfer` method
|
|
3655
|
+
// https://tc39.es/ecma262/#sec-arraybuffer.prototype.transfer
|
|
3656
|
+
if ($transfer) $({ target: 'ArrayBuffer', proto: true }, {
|
|
3657
|
+
transfer: function transfer() {
|
|
3658
|
+
return $transfer(this, arguments.length ? arguments[0] : undefined, true);
|
|
3659
|
+
}
|
|
3660
|
+
});
|
|
3661
|
+
|
|
3662
|
+
|
|
3663
|
+
/***/ }),
|
|
3664
|
+
|
|
3665
|
+
/***/ 8111:
|
|
3666
|
+
/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
|
|
3667
|
+
|
|
3668
|
+
"use strict";
|
|
3669
|
+
|
|
3670
|
+
var $ = __webpack_require__(6518);
|
|
3671
|
+
var globalThis = __webpack_require__(4576);
|
|
3672
|
+
var anInstance = __webpack_require__(679);
|
|
3673
|
+
var anObject = __webpack_require__(932);
|
|
3674
|
+
var isCallable = __webpack_require__(4901);
|
|
3675
|
+
var getPrototypeOf = __webpack_require__(2787);
|
|
3676
|
+
var defineBuiltInAccessor = __webpack_require__(2106);
|
|
3677
|
+
var createProperty = __webpack_require__(4659);
|
|
3678
|
+
var fails = __webpack_require__(9039);
|
|
3679
|
+
var hasOwn = __webpack_require__(9297);
|
|
3680
|
+
var wellKnownSymbol = __webpack_require__(8227);
|
|
3681
|
+
var IteratorPrototype = (__webpack_require__(7657).IteratorPrototype);
|
|
3682
|
+
var DESCRIPTORS = __webpack_require__(3724);
|
|
3683
|
+
var IS_PURE = __webpack_require__(6395);
|
|
3684
|
+
|
|
3685
|
+
var CONSTRUCTOR = 'constructor';
|
|
3686
|
+
var ITERATOR = 'Iterator';
|
|
3687
|
+
var TO_STRING_TAG = wellKnownSymbol('toStringTag');
|
|
3688
|
+
|
|
3689
|
+
var $TypeError = TypeError;
|
|
3690
|
+
var NativeIterator = globalThis[ITERATOR];
|
|
3691
|
+
|
|
3692
|
+
// FF56- have non-standard global helper `Iterator`
|
|
3693
|
+
var FORCED = IS_PURE
|
|
3694
|
+
|| !isCallable(NativeIterator)
|
|
3695
|
+
|| NativeIterator.prototype !== IteratorPrototype
|
|
3696
|
+
// FF44- non-standard `Iterator` passes previous tests
|
|
3697
|
+
|| !fails(function () { NativeIterator({}); });
|
|
3698
|
+
|
|
3699
|
+
var IteratorConstructor = function Iterator() {
|
|
3700
|
+
anInstance(this, IteratorPrototype);
|
|
3701
|
+
if (getPrototypeOf(this) === IteratorPrototype) throw new $TypeError('Abstract class Iterator not directly constructable');
|
|
3702
|
+
};
|
|
3703
|
+
|
|
3704
|
+
var defineIteratorPrototypeAccessor = function (key, value) {
|
|
3705
|
+
if (DESCRIPTORS) {
|
|
3706
|
+
defineBuiltInAccessor(IteratorPrototype, key, {
|
|
3707
|
+
configurable: true,
|
|
3708
|
+
get: function () {
|
|
3709
|
+
return value;
|
|
3710
|
+
},
|
|
3711
|
+
set: function (replacement) {
|
|
3712
|
+
anObject(this);
|
|
3713
|
+
if (this === IteratorPrototype) throw new $TypeError("You can't redefine this property");
|
|
3714
|
+
if (hasOwn(this, key)) this[key] = replacement;
|
|
3715
|
+
else createProperty(this, key, replacement);
|
|
3716
|
+
}
|
|
3717
|
+
});
|
|
3718
|
+
} else IteratorPrototype[key] = value;
|
|
3719
|
+
};
|
|
3720
|
+
|
|
3721
|
+
if (!hasOwn(IteratorPrototype, TO_STRING_TAG)) defineIteratorPrototypeAccessor(TO_STRING_TAG, ITERATOR);
|
|
3722
|
+
|
|
3723
|
+
if (FORCED || !hasOwn(IteratorPrototype, CONSTRUCTOR) || IteratorPrototype[CONSTRUCTOR] === Object) {
|
|
3724
|
+
defineIteratorPrototypeAccessor(CONSTRUCTOR, IteratorConstructor);
|
|
3725
|
+
}
|
|
3726
|
+
|
|
3727
|
+
IteratorConstructor.prototype = IteratorPrototype;
|
|
3728
|
+
|
|
3729
|
+
// `Iterator` constructor
|
|
3730
|
+
// https://tc39.es/ecma262/#sec-iterator
|
|
3731
|
+
$({ global: true, constructor: true, forced: FORCED }, {
|
|
3732
|
+
Iterator: IteratorConstructor
|
|
3733
|
+
});
|
|
3734
|
+
|
|
3735
|
+
|
|
3736
|
+
/***/ }),
|
|
3737
|
+
|
|
3738
|
+
/***/ 8227:
|
|
3739
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
3740
|
+
|
|
3741
|
+
"use strict";
|
|
3742
|
+
|
|
3743
|
+
var globalThis = __webpack_require__(4576);
|
|
3744
|
+
var shared = __webpack_require__(5745);
|
|
3745
|
+
var hasOwn = __webpack_require__(9297);
|
|
3746
|
+
var uid = __webpack_require__(3392);
|
|
3747
|
+
var NATIVE_SYMBOL = __webpack_require__(4495);
|
|
3748
|
+
var USE_SYMBOL_AS_UID = __webpack_require__(7040);
|
|
3749
|
+
|
|
3750
|
+
var Symbol = globalThis.Symbol;
|
|
3751
|
+
var WellKnownSymbolsStore = shared('wks');
|
|
3752
|
+
var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol['for'] || Symbol : Symbol && Symbol.withoutSetter || uid;
|
|
3753
|
+
|
|
3754
|
+
module.exports = function (name) {
|
|
3755
|
+
if (!hasOwn(WellKnownSymbolsStore, name)) {
|
|
3756
|
+
WellKnownSymbolsStore[name] = NATIVE_SYMBOL && hasOwn(Symbol, name)
|
|
3757
|
+
? Symbol[name]
|
|
3758
|
+
: createWellKnownSymbol('Symbol.' + name);
|
|
3759
|
+
} return WellKnownSymbolsStore[name];
|
|
3760
|
+
};
|
|
3761
|
+
|
|
3762
|
+
|
|
3763
|
+
/***/ }),
|
|
3764
|
+
|
|
3765
|
+
/***/ 8469:
|
|
3766
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
3767
|
+
|
|
3768
|
+
"use strict";
|
|
3769
|
+
|
|
3770
|
+
var uncurryThis = __webpack_require__(9504);
|
|
3771
|
+
var iterateSimple = __webpack_require__(507);
|
|
3772
|
+
var SetHelpers = __webpack_require__(4402);
|
|
3773
|
+
|
|
3774
|
+
var Set = SetHelpers.Set;
|
|
3775
|
+
var SetPrototype = SetHelpers.proto;
|
|
3776
|
+
var forEach = uncurryThis(SetPrototype.forEach);
|
|
3777
|
+
var keys = uncurryThis(SetPrototype.keys);
|
|
3778
|
+
var next = keys(new Set()).next;
|
|
3779
|
+
|
|
3780
|
+
module.exports = function (set, fn, interruptible) {
|
|
3781
|
+
return interruptible ? iterateSimple({ iterator: keys(set), next: next }, fn) : forEach(set, fn);
|
|
3782
|
+
};
|
|
3783
|
+
|
|
3784
|
+
|
|
3785
|
+
/***/ }),
|
|
3786
|
+
|
|
3787
|
+
/***/ 8480:
|
|
3788
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
3789
|
+
|
|
3790
|
+
"use strict";
|
|
3791
|
+
|
|
3792
|
+
var internalObjectKeys = __webpack_require__(1828);
|
|
3793
|
+
var enumBugKeys = __webpack_require__(8727);
|
|
3794
|
+
|
|
3795
|
+
var hiddenKeys = enumBugKeys.concat('length', 'prototype');
|
|
3796
|
+
|
|
3797
|
+
// `Object.getOwnPropertyNames` method
|
|
3798
|
+
// https://tc39.es/ecma262/#sec-object.getownpropertynames
|
|
3799
|
+
// eslint-disable-next-line es/no-object-getownpropertynames -- safe
|
|
3800
|
+
exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
|
|
3801
|
+
return internalObjectKeys(O, hiddenKeys);
|
|
3802
|
+
};
|
|
3803
|
+
|
|
3804
|
+
|
|
3805
|
+
/***/ }),
|
|
3806
|
+
|
|
3807
|
+
/***/ 8527:
|
|
3808
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
3809
|
+
|
|
3810
|
+
"use strict";
|
|
3811
|
+
|
|
3812
|
+
var aSet = __webpack_require__(7080);
|
|
3813
|
+
var has = (__webpack_require__(4402).has);
|
|
3814
|
+
var size = __webpack_require__(5170);
|
|
3815
|
+
var getSetRecord = __webpack_require__(3789);
|
|
3816
|
+
var iterateSimple = __webpack_require__(507);
|
|
3817
|
+
var iteratorClose = __webpack_require__(9539);
|
|
3818
|
+
|
|
3819
|
+
// `Set.prototype.isSupersetOf` method
|
|
3820
|
+
// https://tc39.es/ecma262/#sec-set.prototype.issupersetof
|
|
3821
|
+
module.exports = function isSupersetOf(other) {
|
|
3822
|
+
var O = aSet(this);
|
|
3823
|
+
var otherRec = getSetRecord(other);
|
|
3824
|
+
if (size(O) < otherRec.size) return false;
|
|
3825
|
+
var iterator = otherRec.getIterator();
|
|
3826
|
+
return iterateSimple(iterator, function (e) {
|
|
3827
|
+
if (!has(O, e)) return iteratorClose(iterator, 'normal', false);
|
|
3828
|
+
}) !== false;
|
|
3829
|
+
};
|
|
3830
|
+
|
|
3831
|
+
|
|
3832
|
+
/***/ }),
|
|
3833
|
+
|
|
3834
|
+
/***/ 8622:
|
|
3835
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
3836
|
+
|
|
3837
|
+
"use strict";
|
|
3838
|
+
|
|
3839
|
+
var globalThis = __webpack_require__(4576);
|
|
3840
|
+
var isCallable = __webpack_require__(4901);
|
|
3841
|
+
|
|
3842
|
+
var WeakMap = globalThis.WeakMap;
|
|
3843
|
+
|
|
3844
|
+
module.exports = isCallable(WeakMap) && /native code/.test(String(WeakMap));
|
|
3845
|
+
|
|
3846
|
+
|
|
3847
|
+
/***/ }),
|
|
3848
|
+
|
|
3849
|
+
/***/ 8686:
|
|
3850
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
3851
|
+
|
|
3852
|
+
"use strict";
|
|
3853
|
+
|
|
3854
|
+
var DESCRIPTORS = __webpack_require__(3724);
|
|
3855
|
+
var fails = __webpack_require__(9039);
|
|
3856
|
+
|
|
3857
|
+
// V8 ~ Chrome 36-
|
|
3858
|
+
// https://bugs.chromium.org/p/v8/issues/detail?id=3334
|
|
3859
|
+
module.exports = DESCRIPTORS && fails(function () {
|
|
3860
|
+
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
3861
|
+
return Object.defineProperty(function () { /* empty */ }, 'prototype', {
|
|
3862
|
+
value: 42,
|
|
3863
|
+
writable: false
|
|
3864
|
+
}).prototype !== 42;
|
|
3865
|
+
});
|
|
3866
|
+
|
|
3867
|
+
|
|
3868
|
+
/***/ }),
|
|
3869
|
+
|
|
3870
|
+
/***/ 8727:
|
|
3871
|
+
/***/ (function(module) {
|
|
3872
|
+
|
|
3873
|
+
"use strict";
|
|
3874
|
+
|
|
3875
|
+
// IE8- don't enum bug keys
|
|
3876
|
+
module.exports = [
|
|
3877
|
+
'constructor',
|
|
3878
|
+
'hasOwnProperty',
|
|
3879
|
+
'isPrototypeOf',
|
|
3880
|
+
'propertyIsEnumerable',
|
|
3881
|
+
'toLocaleString',
|
|
3882
|
+
'toString',
|
|
3883
|
+
'valueOf'
|
|
3884
|
+
];
|
|
3885
|
+
|
|
3886
|
+
|
|
3887
|
+
/***/ }),
|
|
3888
|
+
|
|
3889
|
+
/***/ 8750:
|
|
3890
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
3891
|
+
|
|
3892
|
+
"use strict";
|
|
3893
|
+
|
|
3894
|
+
var aSet = __webpack_require__(7080);
|
|
3895
|
+
var SetHelpers = __webpack_require__(4402);
|
|
3896
|
+
var size = __webpack_require__(5170);
|
|
3897
|
+
var getSetRecord = __webpack_require__(3789);
|
|
3898
|
+
var iterateSet = __webpack_require__(8469);
|
|
3899
|
+
var iterateSimple = __webpack_require__(507);
|
|
3900
|
+
|
|
3901
|
+
var Set = SetHelpers.Set;
|
|
3902
|
+
var add = SetHelpers.add;
|
|
3903
|
+
var has = SetHelpers.has;
|
|
3904
|
+
|
|
3905
|
+
// `Set.prototype.intersection` method
|
|
3906
|
+
// https://tc39.es/ecma262/#sec-set.prototype.intersection
|
|
3907
|
+
module.exports = function intersection(other) {
|
|
3908
|
+
var O = aSet(this);
|
|
3909
|
+
var otherRec = getSetRecord(other);
|
|
3910
|
+
var result = new Set();
|
|
3911
|
+
|
|
3912
|
+
if (size(O) > otherRec.size) {
|
|
3913
|
+
iterateSimple(otherRec.getIterator(), function (e) {
|
|
3914
|
+
if (has(O, e)) add(result, e);
|
|
3915
|
+
});
|
|
3916
|
+
} else {
|
|
3917
|
+
iterateSet(O, function (e) {
|
|
3918
|
+
if (otherRec.includes(e)) add(result, e);
|
|
3919
|
+
});
|
|
3920
|
+
}
|
|
3921
|
+
|
|
3922
|
+
return result;
|
|
3923
|
+
};
|
|
3924
|
+
|
|
3925
|
+
|
|
3926
|
+
/***/ }),
|
|
3927
|
+
|
|
3928
|
+
/***/ 8773:
|
|
3929
|
+
/***/ (function(__unused_webpack_module, exports) {
|
|
3930
|
+
|
|
3931
|
+
"use strict";
|
|
3932
|
+
|
|
3933
|
+
var $propertyIsEnumerable = {}.propertyIsEnumerable;
|
|
3934
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
3935
|
+
var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
3936
|
+
|
|
3937
|
+
// Nashorn ~ JDK8 bug
|
|
3938
|
+
var NASHORN_BUG = getOwnPropertyDescriptor && !$propertyIsEnumerable.call({ 1: 2 }, 1);
|
|
3939
|
+
|
|
3940
|
+
// `Object.prototype.propertyIsEnumerable` method implementation
|
|
3941
|
+
// https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable
|
|
3942
|
+
exports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
|
|
3943
|
+
var descriptor = getOwnPropertyDescriptor(this, V);
|
|
3944
|
+
return !!descriptor && descriptor.enumerable;
|
|
3945
|
+
} : $propertyIsEnumerable;
|
|
3946
|
+
|
|
3947
|
+
|
|
3948
|
+
/***/ }),
|
|
3949
|
+
|
|
3950
|
+
/***/ 8981:
|
|
3951
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
3952
|
+
|
|
3953
|
+
"use strict";
|
|
3954
|
+
|
|
3955
|
+
var requireObjectCoercible = __webpack_require__(7750);
|
|
3956
|
+
|
|
3957
|
+
var $Object = Object;
|
|
3958
|
+
|
|
3959
|
+
// `ToObject` abstract operation
|
|
3960
|
+
// https://tc39.es/ecma262/#sec-toobject
|
|
3961
|
+
module.exports = function (argument) {
|
|
3962
|
+
return $Object(requireObjectCoercible(argument));
|
|
3963
|
+
};
|
|
3964
|
+
|
|
3965
|
+
|
|
3966
|
+
/***/ }),
|
|
3967
|
+
|
|
3968
|
+
/***/ 9039:
|
|
3969
|
+
/***/ (function(module) {
|
|
3970
|
+
|
|
3971
|
+
"use strict";
|
|
3972
|
+
|
|
3973
|
+
module.exports = function (exec) {
|
|
3974
|
+
try {
|
|
3975
|
+
return !!exec();
|
|
3976
|
+
} catch (error) {
|
|
3977
|
+
return true;
|
|
3978
|
+
}
|
|
3979
|
+
};
|
|
3980
|
+
|
|
3981
|
+
|
|
3982
|
+
/***/ }),
|
|
3983
|
+
|
|
3984
|
+
/***/ 9286:
|
|
3985
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
3986
|
+
|
|
3987
|
+
"use strict";
|
|
3988
|
+
|
|
3989
|
+
var SetHelpers = __webpack_require__(4402);
|
|
3990
|
+
var iterate = __webpack_require__(8469);
|
|
3991
|
+
|
|
3992
|
+
var Set = SetHelpers.Set;
|
|
3993
|
+
var add = SetHelpers.add;
|
|
3994
|
+
|
|
3995
|
+
module.exports = function (set) {
|
|
3996
|
+
var result = new Set();
|
|
3997
|
+
iterate(set, function (it) {
|
|
3998
|
+
add(result, it);
|
|
3999
|
+
});
|
|
4000
|
+
return result;
|
|
4001
|
+
};
|
|
4002
|
+
|
|
4003
|
+
|
|
4004
|
+
/***/ }),
|
|
4005
|
+
|
|
4006
|
+
/***/ 9297:
|
|
4007
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
4008
|
+
|
|
4009
|
+
"use strict";
|
|
4010
|
+
|
|
4011
|
+
var uncurryThis = __webpack_require__(9504);
|
|
4012
|
+
var toObject = __webpack_require__(8981);
|
|
4013
|
+
|
|
4014
|
+
var hasOwnProperty = uncurryThis({}.hasOwnProperty);
|
|
4015
|
+
|
|
4016
|
+
// `HasOwnProperty` abstract operation
|
|
4017
|
+
// https://tc39.es/ecma262/#sec-hasownproperty
|
|
4018
|
+
// eslint-disable-next-line es/no-object-hasown -- safe
|
|
4019
|
+
module.exports = Object.hasOwn || function hasOwn(it, key) {
|
|
4020
|
+
return hasOwnProperty(toObject(it), key);
|
|
4021
|
+
};
|
|
4022
|
+
|
|
4023
|
+
|
|
4024
|
+
/***/ }),
|
|
4025
|
+
|
|
4026
|
+
/***/ 9306:
|
|
4027
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
4028
|
+
|
|
4029
|
+
"use strict";
|
|
4030
|
+
|
|
4031
|
+
var isCallable = __webpack_require__(4901);
|
|
4032
|
+
var tryToString = __webpack_require__(6823);
|
|
4033
|
+
|
|
4034
|
+
var $TypeError = TypeError;
|
|
4035
|
+
|
|
4036
|
+
// `Assert: IsCallable(argument) is true`
|
|
4037
|
+
module.exports = function (argument) {
|
|
4038
|
+
if (isCallable(argument)) return argument;
|
|
4039
|
+
throw new $TypeError(tryToString(argument) + ' is not a function');
|
|
4040
|
+
};
|
|
4041
|
+
|
|
4042
|
+
|
|
4043
|
+
/***/ }),
|
|
4044
|
+
|
|
4045
|
+
/***/ 9429:
|
|
4046
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
4047
|
+
|
|
4048
|
+
"use strict";
|
|
4049
|
+
|
|
4050
|
+
var globalThis = __webpack_require__(4576);
|
|
4051
|
+
var IS_NODE = __webpack_require__(6193);
|
|
4052
|
+
|
|
4053
|
+
module.exports = function (name) {
|
|
4054
|
+
if (IS_NODE) {
|
|
4055
|
+
try {
|
|
4056
|
+
return globalThis.process.getBuiltinModule(name);
|
|
4057
|
+
} catch (error) { /* empty */ }
|
|
4058
|
+
try {
|
|
4059
|
+
// eslint-disable-next-line no-new-func -- safe
|
|
4060
|
+
return Function('return require("' + name + '")')();
|
|
4061
|
+
} catch (error) { /* empty */ }
|
|
4062
|
+
}
|
|
4063
|
+
};
|
|
4064
|
+
|
|
4065
|
+
|
|
4066
|
+
/***/ }),
|
|
4067
|
+
|
|
4068
|
+
/***/ 9433:
|
|
4069
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
4070
|
+
|
|
4071
|
+
"use strict";
|
|
4072
|
+
|
|
4073
|
+
var globalThis = __webpack_require__(4576);
|
|
4074
|
+
|
|
4075
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
4076
|
+
var defineProperty = Object.defineProperty;
|
|
4077
|
+
|
|
4078
|
+
module.exports = function (key, value) {
|
|
4079
|
+
try {
|
|
4080
|
+
defineProperty(globalThis, key, { value: value, configurable: true, writable: true });
|
|
4081
|
+
} catch (error) {
|
|
4082
|
+
globalThis[key] = value;
|
|
4083
|
+
} return value;
|
|
4084
|
+
};
|
|
4085
|
+
|
|
4086
|
+
|
|
4087
|
+
/***/ }),
|
|
4088
|
+
|
|
4089
|
+
/***/ 9504:
|
|
4090
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
4091
|
+
|
|
4092
|
+
"use strict";
|
|
4093
|
+
|
|
4094
|
+
var NATIVE_BIND = __webpack_require__(616);
|
|
4095
|
+
|
|
4096
|
+
var FunctionPrototype = Function.prototype;
|
|
4097
|
+
var call = FunctionPrototype.call;
|
|
4098
|
+
// eslint-disable-next-line es/no-function-prototype-bind -- safe
|
|
4099
|
+
var uncurryThisWithBind = NATIVE_BIND && FunctionPrototype.bind.bind(call, call);
|
|
4100
|
+
|
|
4101
|
+
module.exports = NATIVE_BIND ? uncurryThisWithBind : function (fn) {
|
|
4102
|
+
return function () {
|
|
4103
|
+
return call.apply(fn, arguments);
|
|
4104
|
+
};
|
|
4105
|
+
};
|
|
4106
|
+
|
|
4107
|
+
|
|
4108
|
+
/***/ }),
|
|
4109
|
+
|
|
4110
|
+
/***/ 9519:
|
|
4111
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
4112
|
+
|
|
4113
|
+
"use strict";
|
|
4114
|
+
|
|
4115
|
+
var globalThis = __webpack_require__(4576);
|
|
4116
|
+
var userAgent = __webpack_require__(2839);
|
|
4117
|
+
|
|
4118
|
+
var process = globalThis.process;
|
|
4119
|
+
var Deno = globalThis.Deno;
|
|
4120
|
+
var versions = process && process.versions || Deno && Deno.version;
|
|
4121
|
+
var v8 = versions && versions.v8;
|
|
4122
|
+
var match, version;
|
|
4123
|
+
|
|
4124
|
+
if (v8) {
|
|
4125
|
+
match = v8.split('.');
|
|
4126
|
+
// in old Chrome, versions of V8 isn't V8 = Chrome / 10
|
|
4127
|
+
// but their correct versions are not interesting for us
|
|
4128
|
+
version = match[0] > 0 && match[0] < 4 ? 1 : +(match[0] + match[1]);
|
|
4129
|
+
}
|
|
4130
|
+
|
|
4131
|
+
// BrowserFS NodeJS `process` polyfill incorrectly set `.v8` to `0.0`
|
|
4132
|
+
// so check `userAgent` even if `.v8` exists, but 0
|
|
4133
|
+
if (!version && userAgent) {
|
|
4134
|
+
match = userAgent.match(/Edge\/(\d+)/);
|
|
4135
|
+
if (!match || match[1] >= 74) {
|
|
4136
|
+
match = userAgent.match(/Chrome\/(\d+)/);
|
|
4137
|
+
if (match) version = +match[1];
|
|
4138
|
+
}
|
|
4139
|
+
}
|
|
4140
|
+
|
|
4141
|
+
module.exports = version;
|
|
4142
|
+
|
|
4143
|
+
|
|
4144
|
+
/***/ }),
|
|
4145
|
+
|
|
4146
|
+
/***/ 9539:
|
|
4147
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
4148
|
+
|
|
4149
|
+
"use strict";
|
|
4150
|
+
|
|
4151
|
+
var call = __webpack_require__(9565);
|
|
4152
|
+
var anObject = __webpack_require__(932);
|
|
4153
|
+
var getMethod = __webpack_require__(5966);
|
|
4154
|
+
|
|
4155
|
+
module.exports = function (iterator, kind, value) {
|
|
4156
|
+
var innerResult, innerError;
|
|
4157
|
+
anObject(iterator);
|
|
4158
|
+
try {
|
|
4159
|
+
innerResult = getMethod(iterator, 'return');
|
|
4160
|
+
if (!innerResult) {
|
|
4161
|
+
if (kind === 'throw') throw value;
|
|
4162
|
+
return value;
|
|
4163
|
+
}
|
|
4164
|
+
innerResult = call(innerResult, iterator);
|
|
4165
|
+
} catch (error) {
|
|
4166
|
+
innerError = true;
|
|
4167
|
+
innerResult = error;
|
|
4168
|
+
}
|
|
4169
|
+
if (kind === 'throw') throw value;
|
|
4170
|
+
if (innerError) throw innerResult;
|
|
4171
|
+
anObject(innerResult);
|
|
4172
|
+
return value;
|
|
4173
|
+
};
|
|
4174
|
+
|
|
4175
|
+
|
|
4176
|
+
/***/ }),
|
|
4177
|
+
|
|
4178
|
+
/***/ 9565:
|
|
4179
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
4180
|
+
|
|
4181
|
+
"use strict";
|
|
4182
|
+
|
|
4183
|
+
var NATIVE_BIND = __webpack_require__(616);
|
|
4184
|
+
|
|
4185
|
+
var call = Function.prototype.call;
|
|
4186
|
+
// eslint-disable-next-line es/no-function-prototype-bind -- safe
|
|
4187
|
+
module.exports = NATIVE_BIND ? call.bind(call) : function () {
|
|
4188
|
+
return call.apply(call, arguments);
|
|
4189
|
+
};
|
|
4190
|
+
|
|
4191
|
+
|
|
4192
|
+
/***/ }),
|
|
4193
|
+
|
|
4194
|
+
/***/ 9617:
|
|
4195
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
4196
|
+
|
|
4197
|
+
"use strict";
|
|
4198
|
+
|
|
4199
|
+
var toIndexedObject = __webpack_require__(5397);
|
|
4200
|
+
var toAbsoluteIndex = __webpack_require__(5610);
|
|
4201
|
+
var lengthOfArrayLike = __webpack_require__(6198);
|
|
4202
|
+
|
|
4203
|
+
// `Array.prototype.{ indexOf, includes }` methods implementation
|
|
4204
|
+
var createMethod = function (IS_INCLUDES) {
|
|
4205
|
+
return function ($this, el, fromIndex) {
|
|
4206
|
+
var O = toIndexedObject($this);
|
|
4207
|
+
var length = lengthOfArrayLike(O);
|
|
4208
|
+
if (length === 0) return !IS_INCLUDES && -1;
|
|
4209
|
+
var index = toAbsoluteIndex(fromIndex, length);
|
|
4210
|
+
var value;
|
|
4211
|
+
// Array#includes uses SameValueZero equality algorithm
|
|
4212
|
+
// eslint-disable-next-line no-self-compare -- NaN check
|
|
4213
|
+
if (IS_INCLUDES && el !== el) while (length > index) {
|
|
4214
|
+
value = O[index++];
|
|
4215
|
+
// eslint-disable-next-line no-self-compare -- NaN check
|
|
4216
|
+
if (value !== value) return true;
|
|
4217
|
+
// Array#indexOf ignores holes, Array#includes - not
|
|
4218
|
+
} else for (;length > index; index++) {
|
|
4219
|
+
if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
|
|
4220
|
+
} return !IS_INCLUDES && -1;
|
|
4221
|
+
};
|
|
4222
|
+
};
|
|
4223
|
+
|
|
4224
|
+
module.exports = {
|
|
4225
|
+
// `Array.prototype.includes` method
|
|
4226
|
+
// https://tc39.es/ecma262/#sec-array.prototype.includes
|
|
4227
|
+
includes: createMethod(true),
|
|
4228
|
+
// `Array.prototype.indexOf` method
|
|
4229
|
+
// https://tc39.es/ecma262/#sec-array.prototype.indexof
|
|
4230
|
+
indexOf: createMethod(false)
|
|
4231
|
+
};
|
|
4232
|
+
|
|
4233
|
+
|
|
4234
|
+
/***/ }),
|
|
4235
|
+
|
|
4236
|
+
/***/ 9835:
|
|
4237
|
+
/***/ (function(module) {
|
|
4238
|
+
|
|
4239
|
+
"use strict";
|
|
4240
|
+
|
|
4241
|
+
// Should get iterator record of a set-like object before cloning this
|
|
4242
|
+
// https://bugs.webkit.org/show_bug.cgi?id=289430
|
|
4243
|
+
module.exports = function (METHOD_NAME) {
|
|
4244
|
+
try {
|
|
4245
|
+
// eslint-disable-next-line es/no-set -- needed for test
|
|
4246
|
+
var baseSet = new Set();
|
|
4247
|
+
var setLike = {
|
|
4248
|
+
size: 0,
|
|
4249
|
+
has: function () { return true; },
|
|
4250
|
+
keys: function () {
|
|
4251
|
+
// eslint-disable-next-line es/no-object-defineproperty -- needed for test
|
|
4252
|
+
return Object.defineProperty({}, 'next', {
|
|
4253
|
+
get: function () {
|
|
4254
|
+
baseSet.clear();
|
|
4255
|
+
baseSet.add(4);
|
|
4256
|
+
return function () {
|
|
4257
|
+
return { done: true };
|
|
4258
|
+
};
|
|
4259
|
+
}
|
|
4260
|
+
});
|
|
4261
|
+
}
|
|
4262
|
+
};
|
|
4263
|
+
var result = baseSet[METHOD_NAME](setLike);
|
|
4264
|
+
|
|
4265
|
+
return result.size === 1 && result.values().next().value === 4;
|
|
4266
|
+
} catch (error) {
|
|
4267
|
+
return false;
|
|
4268
|
+
}
|
|
4269
|
+
};
|
|
4270
|
+
|
|
4271
|
+
|
|
4272
|
+
/***/ })
|
|
4273
|
+
|
|
4274
|
+
/******/ });
|
|
4275
|
+
/************************************************************************/
|
|
4276
|
+
/******/ // The module cache
|
|
4277
|
+
/******/ var __webpack_module_cache__ = {};
|
|
4278
|
+
/******/
|
|
4279
|
+
/******/ // The require function
|
|
4280
|
+
/******/ function __webpack_require__(moduleId) {
|
|
4281
|
+
/******/ // Check if module is in cache
|
|
4282
|
+
/******/ var cachedModule = __webpack_module_cache__[moduleId];
|
|
4283
|
+
/******/ if (cachedModule !== undefined) {
|
|
4284
|
+
/******/ return cachedModule.exports;
|
|
4285
|
+
/******/ }
|
|
4286
|
+
/******/ // Create a new module (and put it into the cache)
|
|
4287
|
+
/******/ var module = __webpack_module_cache__[moduleId] = {
|
|
4288
|
+
/******/ // no module.id needed
|
|
4289
|
+
/******/ // no module.loaded needed
|
|
4290
|
+
/******/ exports: {}
|
|
4291
|
+
/******/ };
|
|
4292
|
+
/******/
|
|
4293
|
+
/******/ // Execute the module function
|
|
4294
|
+
/******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
|
4295
|
+
/******/
|
|
4296
|
+
/******/ // Return the exports of the module
|
|
4297
|
+
/******/ return module.exports;
|
|
4298
|
+
/******/ }
|
|
4299
|
+
/******/
|
|
4300
|
+
/************************************************************************/
|
|
4301
|
+
/******/ /* webpack/runtime/compat get default export */
|
|
4302
|
+
/******/ !function() {
|
|
4303
|
+
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
|
4304
|
+
/******/ __webpack_require__.n = function(module) {
|
|
4305
|
+
/******/ var getter = module && module.__esModule ?
|
|
4306
|
+
/******/ function() { return module['default']; } :
|
|
4307
|
+
/******/ function() { return module; };
|
|
4308
|
+
/******/ __webpack_require__.d(getter, { a: getter });
|
|
4309
|
+
/******/ return getter;
|
|
4310
|
+
/******/ };
|
|
4311
|
+
/******/ }();
|
|
4312
|
+
/******/
|
|
4313
|
+
/******/ /* webpack/runtime/define property getters */
|
|
4314
|
+
/******/ !function() {
|
|
4315
|
+
/******/ // define getter functions for harmony exports
|
|
4316
|
+
/******/ __webpack_require__.d = function(exports, definition) {
|
|
4317
|
+
/******/ for(var key in definition) {
|
|
4318
|
+
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
|
|
4319
|
+
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
|
|
4320
|
+
/******/ }
|
|
4321
|
+
/******/ }
|
|
4322
|
+
/******/ };
|
|
4323
|
+
/******/ }();
|
|
4324
|
+
/******/
|
|
4325
|
+
/******/ /* webpack/runtime/global */
|
|
4326
|
+
/******/ !function() {
|
|
4327
|
+
/******/ __webpack_require__.g = (function() {
|
|
4328
|
+
/******/ if (typeof globalThis === 'object') return globalThis;
|
|
4329
|
+
/******/ try {
|
|
4330
|
+
/******/ return this || new Function('return this')();
|
|
4331
|
+
/******/ } catch (e) {
|
|
4332
|
+
/******/ if (typeof window === 'object') return window;
|
|
4333
|
+
/******/ }
|
|
4334
|
+
/******/ })();
|
|
4335
|
+
/******/ }();
|
|
4336
|
+
/******/
|
|
4337
|
+
/******/ /* webpack/runtime/hasOwnProperty shorthand */
|
|
4338
|
+
/******/ !function() {
|
|
4339
|
+
/******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }
|
|
4340
|
+
/******/ }();
|
|
4341
|
+
/******/
|
|
4342
|
+
/******/ /* webpack/runtime/make namespace object */
|
|
4343
|
+
/******/ !function() {
|
|
4344
|
+
/******/ // define __esModule on exports
|
|
4345
|
+
/******/ __webpack_require__.r = function(exports) {
|
|
4346
|
+
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
|
4347
|
+
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
4348
|
+
/******/ }
|
|
4349
|
+
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
|
4350
|
+
/******/ };
|
|
4351
|
+
/******/ }();
|
|
4352
|
+
/******/
|
|
4353
|
+
/******/ /* webpack/runtime/publicPath */
|
|
4354
|
+
/******/ !function() {
|
|
4355
|
+
/******/ __webpack_require__.p = "";
|
|
4356
|
+
/******/ }();
|
|
4357
|
+
/******/
|
|
4358
|
+
/************************************************************************/
|
|
4359
|
+
var __webpack_exports__ = {};
|
|
4360
|
+
// This entry needs to be wrapped in an IIFE because it needs to be in strict mode.
|
|
4361
|
+
!function() {
|
|
4362
|
+
"use strict";
|
|
4363
|
+
// ESM COMPAT FLAG
|
|
4364
|
+
__webpack_require__.r(__webpack_exports__);
|
|
4365
|
+
|
|
4366
|
+
// EXPORTS
|
|
4367
|
+
__webpack_require__.d(__webpack_exports__, {
|
|
4368
|
+
"default": function() { return /* binding */ entry_lib; }
|
|
4369
|
+
});
|
|
4370
|
+
|
|
4371
|
+
;// ./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js
|
|
4372
|
+
/* eslint-disable no-var */
|
|
4373
|
+
// This file is imported into lib/wc client bundles.
|
|
4374
|
+
|
|
4375
|
+
if (typeof window !== 'undefined') {
|
|
4376
|
+
var currentScript = window.document.currentScript
|
|
4377
|
+
if (false) // removed by dead control flow
|
|
4378
|
+
{ var getCurrentScript; }
|
|
4379
|
+
|
|
4380
|
+
var src = currentScript && currentScript.src.match(/(.+\/)[^/]+\.js(\?.*)?$/)
|
|
4381
|
+
if (src) {
|
|
4382
|
+
__webpack_require__.p = src[1] // eslint-disable-line
|
|
4383
|
+
}
|
|
4384
|
+
}
|
|
4385
|
+
|
|
4386
|
+
// Indicate to webpack that this file can be concatenated
|
|
4387
|
+
/* harmony default export */ var setPublicPath = (null);
|
|
4388
|
+
|
|
4389
|
+
;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/elementConfig/ui-form/index.vue?vue&type=template&id=1f72a12e
|
|
4390
|
+
var render = function render() {
|
|
4391
|
+
var _vm = this,
|
|
4392
|
+
_c = _vm._self._c;
|
|
4393
|
+
return _c('el-form', _vm._g(_vm._b({
|
|
4394
|
+
ref: _vm.formRef,
|
|
4395
|
+
staticClass: "tf-form",
|
|
4396
|
+
attrs: {
|
|
4397
|
+
"model": _vm.model
|
|
4398
|
+
}
|
|
4399
|
+
}, 'el-form', _vm.$attrs, false), _vm.$listeners), [_vm._l(_vm.tempFormConfig, function (item, index) {
|
|
4400
|
+
return _c('el-form-item', _vm._b({
|
|
4401
|
+
key: `${item.prop || item.key}-${index}`,
|
|
4402
|
+
attrs: {
|
|
4403
|
+
"label": item.label,
|
|
4404
|
+
"prop": item.prop
|
|
4405
|
+
}
|
|
4406
|
+
}, 'el-form-item', item.formItemAttrs, false), [_vm._t(`item-${item.prop || item.key}`, function () {
|
|
4407
|
+
return [_c(_vm.getComponentName(item.component), _vm._g(_vm._b({
|
|
4408
|
+
tag: "component",
|
|
4409
|
+
model: {
|
|
4410
|
+
value: _vm.model[item.prop],
|
|
4411
|
+
callback: function ($$v) {
|
|
4412
|
+
_vm.$set(_vm.model, item.prop, $$v);
|
|
4413
|
+
},
|
|
4414
|
+
expression: "model[item.prop]"
|
|
4415
|
+
}
|
|
4416
|
+
}, 'component', _vm.handleBindAttrs(item), false), item.events), [_vm.isSelectComponent(item.component) && item.options ? _vm._l(item.options, function (opt) {
|
|
4417
|
+
return _c('el-option', {
|
|
4418
|
+
key: `${item.prop}-${opt.value}`,
|
|
4419
|
+
attrs: {
|
|
4420
|
+
"label": opt.label,
|
|
4421
|
+
"value": opt.value
|
|
4422
|
+
}
|
|
4423
|
+
});
|
|
4424
|
+
}) : _vm._e(), _vm.isRadioGroupComponent(item.component) && item.options ? _vm._l(item.options, function (opt) {
|
|
4425
|
+
return _c('el-radio', {
|
|
4426
|
+
key: `${item.prop}-${opt.value}`,
|
|
4427
|
+
attrs: {
|
|
4428
|
+
"label": opt.value
|
|
4429
|
+
}
|
|
4430
|
+
}, [_vm._v(" " + _vm._s(opt.label) + " ")]);
|
|
4431
|
+
}) : _vm._e()], 2)];
|
|
4432
|
+
}, {
|
|
4433
|
+
"item": item,
|
|
4434
|
+
"model": _vm.model,
|
|
4435
|
+
"index": index
|
|
4436
|
+
})], 2);
|
|
4437
|
+
}), _vm.showOperateBtn ? _c('el-form-item', {
|
|
4438
|
+
attrs: {
|
|
4439
|
+
"label": ""
|
|
4440
|
+
}
|
|
4441
|
+
}, [_vm.defaultBtn ? [_c('el-button', {
|
|
4442
|
+
on: {
|
|
4443
|
+
"click": function ($event) {
|
|
4444
|
+
return _vm.resetForm();
|
|
4445
|
+
}
|
|
4446
|
+
}
|
|
4447
|
+
}, [_vm._v("重置")]), _c('el-button', {
|
|
4448
|
+
attrs: {
|
|
4449
|
+
"type": "primary"
|
|
4450
|
+
},
|
|
4451
|
+
on: {
|
|
4452
|
+
"click": function ($event) {
|
|
4453
|
+
return _vm.$emit('search');
|
|
4454
|
+
}
|
|
4455
|
+
}
|
|
4456
|
+
}, [_vm._v("搜索")])] : _vm._e(), _vm._t("customBtn")], 2) : _vm._e()], 2);
|
|
4457
|
+
};
|
|
4458
|
+
var staticRenderFns = [];
|
|
4459
|
+
|
|
4460
|
+
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.iterator.constructor.js
|
|
4461
|
+
var es_iterator_constructor = __webpack_require__(8111);
|
|
4462
|
+
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.iterator.every.js
|
|
4463
|
+
var es_iterator_every = __webpack_require__(1148);
|
|
4464
|
+
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.iterator.for-each.js
|
|
4465
|
+
var es_iterator_for_each = __webpack_require__(7588);
|
|
4466
|
+
// EXTERNAL MODULE: ./node_modules/deepcopy/umd/deepcopy.js
|
|
4467
|
+
var deepcopy = __webpack_require__(6845);
|
|
4468
|
+
var deepcopy_default = /*#__PURE__*/__webpack_require__.n(deepcopy);
|
|
4469
|
+
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/elementConfig/ui-form/index.vue?vue&type=script&lang=js
|
|
4470
|
+
|
|
4471
|
+
|
|
4472
|
+
|
|
4473
|
+
|
|
4474
|
+
/**
|
|
4475
|
+
* @desc 表单组件
|
|
4476
|
+
* @params formRef ref
|
|
4477
|
+
* @params model modelForm
|
|
4478
|
+
* @params formConfig
|
|
4479
|
+
* @params formConfig
|
|
4480
|
+
* @params formConfig
|
|
4481
|
+
* @params formConfig
|
|
4482
|
+
*/
|
|
4483
|
+
const componentMap = {
|
|
4484
|
+
input: "el-input",
|
|
4485
|
+
select: "el-select",
|
|
4486
|
+
datePicker: "el-date-picker"
|
|
4487
|
+
};
|
|
4488
|
+
/* harmony default export */ var ui_formvue_type_script_lang_js = ({
|
|
4489
|
+
name: "UiForm",
|
|
4490
|
+
props: {
|
|
4491
|
+
formRef: {
|
|
4492
|
+
type: String,
|
|
4493
|
+
default: "formRef"
|
|
4494
|
+
},
|
|
4495
|
+
model: {
|
|
4496
|
+
type: Object,
|
|
4497
|
+
default: () => ({})
|
|
4498
|
+
},
|
|
4499
|
+
formConfig: {
|
|
4500
|
+
type: Array,
|
|
4501
|
+
default: () => [],
|
|
4502
|
+
validator: val => val.every(row => row.prop || row.key)
|
|
4503
|
+
},
|
|
4504
|
+
showOperateBtn: {
|
|
4505
|
+
type: Boolean,
|
|
4506
|
+
default: true
|
|
4507
|
+
},
|
|
4508
|
+
defaultBtn: {
|
|
4509
|
+
type: Boolean,
|
|
4510
|
+
default: true
|
|
4511
|
+
},
|
|
4512
|
+
apiMapConfig: {
|
|
4513
|
+
// { [prop]: [api] } 或 {[prop]: {url: [api], params: [params]}}
|
|
4514
|
+
type: Object,
|
|
4515
|
+
default: () => ({})
|
|
4516
|
+
}
|
|
4517
|
+
},
|
|
4518
|
+
data() {
|
|
4519
|
+
return {
|
|
4520
|
+
tempFormConfig: []
|
|
4521
|
+
};
|
|
4522
|
+
},
|
|
4523
|
+
// created() {
|
|
4524
|
+
// this.initOptions()
|
|
4525
|
+
// },
|
|
4526
|
+
watch: {
|
|
4527
|
+
formConfig: {
|
|
4528
|
+
immediate: true,
|
|
4529
|
+
deep: true,
|
|
4530
|
+
handler(val) {
|
|
4531
|
+
this.tempFormConfig = deepcopy_default()(val);
|
|
4532
|
+
this.initOptions();
|
|
4533
|
+
}
|
|
4534
|
+
}
|
|
4535
|
+
},
|
|
4536
|
+
methods: {
|
|
4537
|
+
getComponentName(componentName) {
|
|
4538
|
+
return componentMap[componentName] || componentName || "el-input";
|
|
4539
|
+
},
|
|
4540
|
+
handleBindAttrs(item) {
|
|
4541
|
+
const style = {
|
|
4542
|
+
width: item.attrs?.width || "220px"
|
|
4543
|
+
};
|
|
4544
|
+
let placeholder = "";
|
|
4545
|
+
const componentName = this.getComponentName(item.component);
|
|
4546
|
+
if (["el-select", "select", "el-date-picker", "virtual-select"].includes(componentName)) {
|
|
4547
|
+
placeholder = `请选择${item.label}`;
|
|
4548
|
+
}
|
|
4549
|
+
if (["el-input", "input"].includes(componentName)) {
|
|
4550
|
+
placeholder = `请输入${item.label}`;
|
|
4551
|
+
}
|
|
4552
|
+
const baseAttrs = {
|
|
4553
|
+
style,
|
|
4554
|
+
placeholder,
|
|
4555
|
+
clearable: true,
|
|
4556
|
+
...(item.attrs || {})
|
|
4557
|
+
};
|
|
4558
|
+
if (componentName === "virtual-select") {
|
|
4559
|
+
return {
|
|
4560
|
+
...baseAttrs,
|
|
4561
|
+
options: item.options || [],
|
|
4562
|
+
listClass: "111w"
|
|
4563
|
+
};
|
|
4564
|
+
}
|
|
4565
|
+
return baseAttrs;
|
|
4566
|
+
},
|
|
4567
|
+
isSelectComponent(componentName) {
|
|
4568
|
+
return ["el-select", "select"].includes(this.getComponentName(componentName));
|
|
4569
|
+
},
|
|
4570
|
+
isRadioGroupComponent(componentName) {
|
|
4571
|
+
return this.getComponentName(componentName) === "el-radio-group";
|
|
4572
|
+
},
|
|
4573
|
+
isVirtualSelectComponent(componentName) {
|
|
4574
|
+
return this.getComponentName(componentName) === "virtual-select";
|
|
4575
|
+
},
|
|
4576
|
+
async initOptions() {
|
|
4577
|
+
for (const item of this.tempFormConfig) {
|
|
4578
|
+
// const
|
|
4579
|
+
const apiConfig = item.api || this.apiMapConfig[item.prop];
|
|
4580
|
+
const optionsRequired = this.isSelectComponent(item.component) || this.isRadioGroupComponent(item.component) || this.isVirtualSelectComponent(item.component);
|
|
4581
|
+
if (optionsRequired && apiConfig && !item.options?.length) {
|
|
4582
|
+
try {
|
|
4583
|
+
const {
|
|
4584
|
+
url,
|
|
4585
|
+
params = {}
|
|
4586
|
+
} = typeof apiConfig === "function" ? {
|
|
4587
|
+
url: apiConfig
|
|
4588
|
+
} : apiConfig;
|
|
4589
|
+
const res = await url(params);
|
|
4590
|
+
const options = item.format ? item.format(res) : res?.data || [];
|
|
4591
|
+
this.$set(item, "options", options);
|
|
4592
|
+
} catch (error) {
|
|
4593
|
+
this.$set(item, "options", []);
|
|
4594
|
+
}
|
|
4595
|
+
}
|
|
4596
|
+
}
|
|
4597
|
+
},
|
|
4598
|
+
resetForm() {
|
|
4599
|
+
this.$refs[this.formRef].resetFields();
|
|
4600
|
+
this.$emit("search");
|
|
4601
|
+
},
|
|
4602
|
+
getOptions() {
|
|
4603
|
+
const propOptionsMap = {};
|
|
4604
|
+
this.tempFormConfig.forEach(row => {
|
|
4605
|
+
if (row.options) {
|
|
4606
|
+
propOptionsMap[row.prop] = row.options;
|
|
4607
|
+
}
|
|
4608
|
+
});
|
|
4609
|
+
return propOptionsMap;
|
|
4610
|
+
}
|
|
4611
|
+
}
|
|
4612
|
+
});
|
|
4613
|
+
;// ./src/elementConfig/ui-form/index.vue?vue&type=script&lang=js
|
|
4614
|
+
/* harmony default export */ var elementConfig_ui_formvue_type_script_lang_js = (ui_formvue_type_script_lang_js);
|
|
4615
|
+
;// ./node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js
|
|
4616
|
+
/* globals __VUE_SSR_CONTEXT__ */
|
|
4617
|
+
|
|
4618
|
+
// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
|
|
4619
|
+
// This module is a runtime utility for cleaner component module output and will
|
|
4620
|
+
// be included in the final webpack user bundle.
|
|
4621
|
+
|
|
4622
|
+
function normalizeComponent(
|
|
4623
|
+
scriptExports,
|
|
4624
|
+
render,
|
|
4625
|
+
staticRenderFns,
|
|
4626
|
+
functionalTemplate,
|
|
4627
|
+
injectStyles,
|
|
4628
|
+
scopeId,
|
|
4629
|
+
moduleIdentifier /* server only */,
|
|
4630
|
+
shadowMode /* vue-cli only */
|
|
4631
|
+
) {
|
|
4632
|
+
// Vue.extend constructor export interop
|
|
4633
|
+
var options =
|
|
4634
|
+
typeof scriptExports === 'function' ? scriptExports.options : scriptExports
|
|
4635
|
+
|
|
4636
|
+
// render functions
|
|
4637
|
+
if (render) {
|
|
4638
|
+
options.render = render
|
|
4639
|
+
options.staticRenderFns = staticRenderFns
|
|
4640
|
+
options._compiled = true
|
|
4641
|
+
}
|
|
4642
|
+
|
|
4643
|
+
// functional template
|
|
4644
|
+
if (functionalTemplate) {
|
|
4645
|
+
options.functional = true
|
|
4646
|
+
}
|
|
4647
|
+
|
|
4648
|
+
// scopedId
|
|
4649
|
+
if (scopeId) {
|
|
4650
|
+
options._scopeId = 'data-v-' + scopeId
|
|
4651
|
+
}
|
|
4652
|
+
|
|
4653
|
+
var hook
|
|
4654
|
+
if (moduleIdentifier) {
|
|
4655
|
+
// server build
|
|
4656
|
+
hook = function (context) {
|
|
4657
|
+
// 2.3 injection
|
|
4658
|
+
context =
|
|
4659
|
+
context || // cached call
|
|
4660
|
+
(this.$vnode && this.$vnode.ssrContext) || // stateful
|
|
4661
|
+
(this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
|
|
4662
|
+
// 2.2 with runInNewContext: true
|
|
4663
|
+
if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
|
|
4664
|
+
context = __VUE_SSR_CONTEXT__
|
|
4665
|
+
}
|
|
4666
|
+
// inject component styles
|
|
4667
|
+
if (injectStyles) {
|
|
4668
|
+
injectStyles.call(this, context)
|
|
4669
|
+
}
|
|
4670
|
+
// register component module identifier for async chunk inferrence
|
|
4671
|
+
if (context && context._registeredComponents) {
|
|
4672
|
+
context._registeredComponents.add(moduleIdentifier)
|
|
4673
|
+
}
|
|
4674
|
+
}
|
|
4675
|
+
// used by ssr in case component is cached and beforeCreate
|
|
4676
|
+
// never gets called
|
|
4677
|
+
options._ssrRegister = hook
|
|
4678
|
+
} else if (injectStyles) {
|
|
4679
|
+
hook = shadowMode
|
|
4680
|
+
? function () {
|
|
4681
|
+
injectStyles.call(
|
|
4682
|
+
this,
|
|
4683
|
+
(options.functional ? this.parent : this).$root.$options.shadowRoot
|
|
4684
|
+
)
|
|
4685
|
+
}
|
|
4686
|
+
: injectStyles
|
|
4687
|
+
}
|
|
4688
|
+
|
|
4689
|
+
if (hook) {
|
|
4690
|
+
if (options.functional) {
|
|
4691
|
+
// for template-only hot-reload because in that case the render fn doesn't
|
|
4692
|
+
// go through the normalizer
|
|
4693
|
+
options._injectStyles = hook
|
|
4694
|
+
// register for functional component in vue file
|
|
4695
|
+
var originalRender = options.render
|
|
4696
|
+
options.render = function renderWithStyleInjection(h, context) {
|
|
4697
|
+
hook.call(context)
|
|
4698
|
+
return originalRender(h, context)
|
|
4699
|
+
}
|
|
4700
|
+
} else {
|
|
4701
|
+
// inject component registration as beforeCreate hook
|
|
4702
|
+
var existing = options.beforeCreate
|
|
4703
|
+
options.beforeCreate = existing ? [].concat(existing, hook) : [hook]
|
|
4704
|
+
}
|
|
4705
|
+
}
|
|
4706
|
+
|
|
4707
|
+
return {
|
|
4708
|
+
exports: scriptExports,
|
|
4709
|
+
options: options
|
|
4710
|
+
}
|
|
4711
|
+
}
|
|
4712
|
+
|
|
4713
|
+
;// ./src/elementConfig/ui-form/index.vue
|
|
4714
|
+
|
|
4715
|
+
|
|
4716
|
+
|
|
4717
|
+
|
|
4718
|
+
|
|
4719
|
+
/* normalize component */
|
|
4720
|
+
;
|
|
4721
|
+
var component = normalizeComponent(
|
|
4722
|
+
elementConfig_ui_formvue_type_script_lang_js,
|
|
4723
|
+
render,
|
|
4724
|
+
staticRenderFns,
|
|
4725
|
+
false,
|
|
4726
|
+
null,
|
|
4727
|
+
null,
|
|
4728
|
+
null
|
|
4729
|
+
|
|
4730
|
+
)
|
|
4731
|
+
|
|
4732
|
+
/* harmony default export */ var ui_form = (component.exports);
|
|
4733
|
+
;// ./src/elementConfig/index.js
|
|
4734
|
+
|
|
4735
|
+
const components = [ui_form];
|
|
4736
|
+
const install = function (Vue) {
|
|
4737
|
+
components.forEach(component => {
|
|
4738
|
+
Vue.component(component.name, component);
|
|
4739
|
+
});
|
|
4740
|
+
};
|
|
4741
|
+
/* harmony default export */ var elementConfig = (install);
|
|
4742
|
+
;// ./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js
|
|
4743
|
+
|
|
4744
|
+
|
|
4745
|
+
/* harmony default export */ var entry_lib = (elementConfig);
|
|
4746
|
+
|
|
4747
|
+
|
|
4748
|
+
}();
|
|
4749
|
+
module.exports = __webpack_exports__;
|
|
4750
|
+
/******/ })()
|
|
4751
|
+
;
|
|
4752
|
+
//# sourceMappingURL=backend-management-ui.common.js.map
|