UNPKG

44.9 kBJavaScriptView Raw
1(function (global, factory) {
2 typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('jquery')) :
3 typeof define === 'function' && define.amd ? define(['jquery'], factory) :
4 (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.jQuery));
5})(this, (function ($$1) { 'use strict';
6
7 function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
8
9 var $__default = /*#__PURE__*/_interopDefaultLegacy($$1);
10
11 var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
12
13 var check = function (it) {
14 return it && it.Math == Math && it;
15 };
16
17 // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
18 var global$a =
19 // eslint-disable-next-line es-x/no-global-this -- safe
20 check(typeof globalThis == 'object' && globalThis) ||
21 check(typeof window == 'object' && window) ||
22 // eslint-disable-next-line no-restricted-globals -- safe
23 check(typeof self == 'object' && self) ||
24 check(typeof commonjsGlobal == 'object' && commonjsGlobal) ||
25 // eslint-disable-next-line no-new-func -- fallback
26 (function () { return this; })() || Function('return this')();
27
28 var objectGetOwnPropertyDescriptor = {};
29
30 var fails$b = function (exec) {
31 try {
32 return !!exec();
33 } catch (error) {
34 return true;
35 }
36 };
37
38 var fails$a = fails$b;
39
40 // Detect IE8's incomplete defineProperty implementation
41 var descriptors = !fails$a(function () {
42 // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
43 return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
44 });
45
46 var fails$9 = fails$b;
47
48 var functionBindNative = !fails$9(function () {
49 // eslint-disable-next-line es-x/no-function-prototype-bind -- safe
50 var test = (function () { /* empty */ }).bind();
51 // eslint-disable-next-line no-prototype-builtins -- safe
52 return typeof test != 'function' || test.hasOwnProperty('prototype');
53 });
54
55 var NATIVE_BIND$1 = functionBindNative;
56
57 var call$4 = Function.prototype.call;
58
59 var functionCall = NATIVE_BIND$1 ? call$4.bind(call$4) : function () {
60 return call$4.apply(call$4, arguments);
61 };
62
63 var objectPropertyIsEnumerable = {};
64
65 var $propertyIsEnumerable = {}.propertyIsEnumerable;
66 // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
67 var getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
68
69 // Nashorn ~ JDK8 bug
70 var NASHORN_BUG = getOwnPropertyDescriptor$1 && !$propertyIsEnumerable.call({ 1: 2 }, 1);
71
72 // `Object.prototype.propertyIsEnumerable` method implementation
73 // https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable
74 objectPropertyIsEnumerable.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
75 var descriptor = getOwnPropertyDescriptor$1(this, V);
76 return !!descriptor && descriptor.enumerable;
77 } : $propertyIsEnumerable;
78
79 var createPropertyDescriptor$3 = function (bitmap, value) {
80 return {
81 enumerable: !(bitmap & 1),
82 configurable: !(bitmap & 2),
83 writable: !(bitmap & 4),
84 value: value
85 };
86 };
87
88 var NATIVE_BIND = functionBindNative;
89
90 var FunctionPrototype$1 = Function.prototype;
91 var bind = FunctionPrototype$1.bind;
92 var call$3 = FunctionPrototype$1.call;
93 var uncurryThis$a = NATIVE_BIND && bind.bind(call$3, call$3);
94
95 var functionUncurryThis = NATIVE_BIND ? function (fn) {
96 return fn && uncurryThis$a(fn);
97 } : function (fn) {
98 return fn && function () {
99 return call$3.apply(fn, arguments);
100 };
101 };
102
103 var uncurryThis$9 = functionUncurryThis;
104
105 var toString$1 = uncurryThis$9({}.toString);
106 var stringSlice = uncurryThis$9(''.slice);
107
108 var classofRaw$1 = function (it) {
109 return stringSlice(toString$1(it), 8, -1);
110 };
111
112 var uncurryThis$8 = functionUncurryThis;
113 var fails$8 = fails$b;
114 var classof$3 = classofRaw$1;
115
116 var $Object$3 = Object;
117 var split = uncurryThis$8(''.split);
118
119 // fallback for non-array-like ES3 and non-enumerable old V8 strings
120 var indexedObject = fails$8(function () {
121 // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
122 // eslint-disable-next-line no-prototype-builtins -- safe
123 return !$Object$3('z').propertyIsEnumerable(0);
124 }) ? function (it) {
125 return classof$3(it) == 'String' ? split(it, '') : $Object$3(it);
126 } : $Object$3;
127
128 var $TypeError$6 = TypeError;
129
130 // `RequireObjectCoercible` abstract operation
131 // https://tc39.es/ecma262/#sec-requireobjectcoercible
132 var requireObjectCoercible$2 = function (it) {
133 if (it == undefined) throw $TypeError$6("Can't call method on " + it);
134 return it;
135 };
136
137 // toObject with fallback for non-array-like ES3 strings
138 var IndexedObject = indexedObject;
139 var requireObjectCoercible$1 = requireObjectCoercible$2;
140
141 var toIndexedObject$3 = function (it) {
142 return IndexedObject(requireObjectCoercible$1(it));
143 };
144
145 // `IsCallable` abstract operation
146 // https://tc39.es/ecma262/#sec-iscallable
147 var isCallable$c = function (argument) {
148 return typeof argument == 'function';
149 };
150
151 var isCallable$b = isCallable$c;
152
153 var isObject$7 = function (it) {
154 return typeof it == 'object' ? it !== null : isCallable$b(it);
155 };
156
157 var global$9 = global$a;
158 var isCallable$a = isCallable$c;
159
160 var aFunction = function (argument) {
161 return isCallable$a(argument) ? argument : undefined;
162 };
163
164 var getBuiltIn$4 = function (namespace, method) {
165 return arguments.length < 2 ? aFunction(global$9[namespace]) : global$9[namespace] && global$9[namespace][method];
166 };
167
168 var uncurryThis$7 = functionUncurryThis;
169
170 var objectIsPrototypeOf = uncurryThis$7({}.isPrototypeOf);
171
172 var getBuiltIn$3 = getBuiltIn$4;
173
174 var engineUserAgent = getBuiltIn$3('navigator', 'userAgent') || '';
175
176 var global$8 = global$a;
177 var userAgent = engineUserAgent;
178
179 var process = global$8.process;
180 var Deno = global$8.Deno;
181 var versions = process && process.versions || Deno && Deno.version;
182 var v8 = versions && versions.v8;
183 var match, version;
184
185 if (v8) {
186 match = v8.split('.');
187 // in old Chrome, versions of V8 isn't V8 = Chrome / 10
188 // but their correct versions are not interesting for us
189 version = match[0] > 0 && match[0] < 4 ? 1 : +(match[0] + match[1]);
190 }
191
192 // BrowserFS NodeJS `process` polyfill incorrectly set `.v8` to `0.0`
193 // so check `userAgent` even if `.v8` exists, but 0
194 if (!version && userAgent) {
195 match = userAgent.match(/Edge\/(\d+)/);
196 if (!match || match[1] >= 74) {
197 match = userAgent.match(/Chrome\/(\d+)/);
198 if (match) version = +match[1];
199 }
200 }
201
202 var engineV8Version = version;
203
204 /* eslint-disable es-x/no-symbol -- required for testing */
205
206 var V8_VERSION$2 = engineV8Version;
207 var fails$7 = fails$b;
208
209 // eslint-disable-next-line es-x/no-object-getownpropertysymbols -- required for testing
210 var nativeSymbol = !!Object.getOwnPropertySymbols && !fails$7(function () {
211 var symbol = Symbol();
212 // Chrome 38 Symbol has incorrect toString conversion
213 // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
214 return !String(symbol) || !(Object(symbol) instanceof Symbol) ||
215 // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
216 !Symbol.sham && V8_VERSION$2 && V8_VERSION$2 < 41;
217 });
218
219 /* eslint-disable es-x/no-symbol -- required for testing */
220
221 var NATIVE_SYMBOL$1 = nativeSymbol;
222
223 var useSymbolAsUid = NATIVE_SYMBOL$1
224 && !Symbol.sham
225 && typeof Symbol.iterator == 'symbol';
226
227 var getBuiltIn$2 = getBuiltIn$4;
228 var isCallable$9 = isCallable$c;
229 var isPrototypeOf = objectIsPrototypeOf;
230 var USE_SYMBOL_AS_UID$1 = useSymbolAsUid;
231
232 var $Object$2 = Object;
233
234 var isSymbol$2 = USE_SYMBOL_AS_UID$1 ? function (it) {
235 return typeof it == 'symbol';
236 } : function (it) {
237 var $Symbol = getBuiltIn$2('Symbol');
238 return isCallable$9($Symbol) && isPrototypeOf($Symbol.prototype, $Object$2(it));
239 };
240
241 var $String$1 = String;
242
243 var tryToString$1 = function (argument) {
244 try {
245 return $String$1(argument);
246 } catch (error) {
247 return 'Object';
248 }
249 };
250
251 var isCallable$8 = isCallable$c;
252 var tryToString = tryToString$1;
253
254 var $TypeError$5 = TypeError;
255
256 // `Assert: IsCallable(argument) is true`
257 var aCallable$1 = function (argument) {
258 if (isCallable$8(argument)) return argument;
259 throw $TypeError$5(tryToString(argument) + ' is not a function');
260 };
261
262 var aCallable = aCallable$1;
263
264 // `GetMethod` abstract operation
265 // https://tc39.es/ecma262/#sec-getmethod
266 var getMethod$1 = function (V, P) {
267 var func = V[P];
268 return func == null ? undefined : aCallable(func);
269 };
270
271 var call$2 = functionCall;
272 var isCallable$7 = isCallable$c;
273 var isObject$6 = isObject$7;
274
275 var $TypeError$4 = TypeError;
276
277 // `OrdinaryToPrimitive` abstract operation
278 // https://tc39.es/ecma262/#sec-ordinarytoprimitive
279 var ordinaryToPrimitive$1 = function (input, pref) {
280 var fn, val;
281 if (pref === 'string' && isCallable$7(fn = input.toString) && !isObject$6(val = call$2(fn, input))) return val;
282 if (isCallable$7(fn = input.valueOf) && !isObject$6(val = call$2(fn, input))) return val;
283 if (pref !== 'string' && isCallable$7(fn = input.toString) && !isObject$6(val = call$2(fn, input))) return val;
284 throw $TypeError$4("Can't convert object to primitive value");
285 };
286
287 var shared$3 = {exports: {}};
288
289 var global$7 = global$a;
290
291 // eslint-disable-next-line es-x/no-object-defineproperty -- safe
292 var defineProperty$1 = Object.defineProperty;
293
294 var defineGlobalProperty$3 = function (key, value) {
295 try {
296 defineProperty$1(global$7, key, { value: value, configurable: true, writable: true });
297 } catch (error) {
298 global$7[key] = value;
299 } return value;
300 };
301
302 var global$6 = global$a;
303 var defineGlobalProperty$2 = defineGlobalProperty$3;
304
305 var SHARED = '__core-js_shared__';
306 var store$3 = global$6[SHARED] || defineGlobalProperty$2(SHARED, {});
307
308 var sharedStore = store$3;
309
310 var store$2 = sharedStore;
311
312 (shared$3.exports = function (key, value) {
313 return store$2[key] || (store$2[key] = value !== undefined ? value : {});
314 })('versions', []).push({
315 version: '3.22.8',
316 mode: 'global',
317 copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
318 license: 'https://github.com/zloirock/core-js/blob/v3.22.8/LICENSE',
319 source: 'https://github.com/zloirock/core-js'
320 });
321
322 var requireObjectCoercible = requireObjectCoercible$2;
323
324 var $Object$1 = Object;
325
326 // `ToObject` abstract operation
327 // https://tc39.es/ecma262/#sec-toobject
328 var toObject$2 = function (argument) {
329 return $Object$1(requireObjectCoercible(argument));
330 };
331
332 var uncurryThis$6 = functionUncurryThis;
333 var toObject$1 = toObject$2;
334
335 var hasOwnProperty = uncurryThis$6({}.hasOwnProperty);
336
337 // `HasOwnProperty` abstract operation
338 // https://tc39.es/ecma262/#sec-hasownproperty
339 // eslint-disable-next-line es-x/no-object-hasown -- safe
340 var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
341 return hasOwnProperty(toObject$1(it), key);
342 };
343
344 var uncurryThis$5 = functionUncurryThis;
345
346 var id = 0;
347 var postfix = Math.random();
348 var toString = uncurryThis$5(1.0.toString);
349
350 var uid$2 = function (key) {
351 return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36);
352 };
353
354 var global$5 = global$a;
355 var shared$2 = shared$3.exports;
356 var hasOwn$6 = hasOwnProperty_1;
357 var uid$1 = uid$2;
358 var NATIVE_SYMBOL = nativeSymbol;
359 var USE_SYMBOL_AS_UID = useSymbolAsUid;
360
361 var WellKnownSymbolsStore = shared$2('wks');
362 var Symbol$1 = global$5.Symbol;
363 var symbolFor = Symbol$1 && Symbol$1['for'];
364 var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid$1;
365
366 var wellKnownSymbol$6 = function (name) {
367 if (!hasOwn$6(WellKnownSymbolsStore, name) || !(NATIVE_SYMBOL || typeof WellKnownSymbolsStore[name] == 'string')) {
368 var description = 'Symbol.' + name;
369 if (NATIVE_SYMBOL && hasOwn$6(Symbol$1, name)) {
370 WellKnownSymbolsStore[name] = Symbol$1[name];
371 } else if (USE_SYMBOL_AS_UID && symbolFor) {
372 WellKnownSymbolsStore[name] = symbolFor(description);
373 } else {
374 WellKnownSymbolsStore[name] = createWellKnownSymbol(description);
375 }
376 } return WellKnownSymbolsStore[name];
377 };
378
379 var call$1 = functionCall;
380 var isObject$5 = isObject$7;
381 var isSymbol$1 = isSymbol$2;
382 var getMethod = getMethod$1;
383 var ordinaryToPrimitive = ordinaryToPrimitive$1;
384 var wellKnownSymbol$5 = wellKnownSymbol$6;
385
386 var $TypeError$3 = TypeError;
387 var TO_PRIMITIVE = wellKnownSymbol$5('toPrimitive');
388
389 // `ToPrimitive` abstract operation
390 // https://tc39.es/ecma262/#sec-toprimitive
391 var toPrimitive$1 = function (input, pref) {
392 if (!isObject$5(input) || isSymbol$1(input)) return input;
393 var exoticToPrim = getMethod(input, TO_PRIMITIVE);
394 var result;
395 if (exoticToPrim) {
396 if (pref === undefined) pref = 'default';
397 result = call$1(exoticToPrim, input, pref);
398 if (!isObject$5(result) || isSymbol$1(result)) return result;
399 throw $TypeError$3("Can't convert object to primitive value");
400 }
401 if (pref === undefined) pref = 'number';
402 return ordinaryToPrimitive(input, pref);
403 };
404
405 var toPrimitive = toPrimitive$1;
406 var isSymbol = isSymbol$2;
407
408 // `ToPropertyKey` abstract operation
409 // https://tc39.es/ecma262/#sec-topropertykey
410 var toPropertyKey$3 = function (argument) {
411 var key = toPrimitive(argument, 'string');
412 return isSymbol(key) ? key : key + '';
413 };
414
415 var global$4 = global$a;
416 var isObject$4 = isObject$7;
417
418 var document = global$4.document;
419 // typeof document.createElement is 'object' in old IE
420 var EXISTS$1 = isObject$4(document) && isObject$4(document.createElement);
421
422 var documentCreateElement = function (it) {
423 return EXISTS$1 ? document.createElement(it) : {};
424 };
425
426 var DESCRIPTORS$6 = descriptors;
427 var fails$6 = fails$b;
428 var createElement = documentCreateElement;
429
430 // Thanks to IE8 for its funny defineProperty
431 var ie8DomDefine = !DESCRIPTORS$6 && !fails$6(function () {
432 // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
433 return Object.defineProperty(createElement('div'), 'a', {
434 get: function () { return 7; }
435 }).a != 7;
436 });
437
438 var DESCRIPTORS$5 = descriptors;
439 var call = functionCall;
440 var propertyIsEnumerableModule = objectPropertyIsEnumerable;
441 var createPropertyDescriptor$2 = createPropertyDescriptor$3;
442 var toIndexedObject$2 = toIndexedObject$3;
443 var toPropertyKey$2 = toPropertyKey$3;
444 var hasOwn$5 = hasOwnProperty_1;
445 var IE8_DOM_DEFINE$1 = ie8DomDefine;
446
447 // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
448 var $getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
449
450 // `Object.getOwnPropertyDescriptor` method
451 // https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
452 objectGetOwnPropertyDescriptor.f = DESCRIPTORS$5 ? $getOwnPropertyDescriptor$1 : function getOwnPropertyDescriptor(O, P) {
453 O = toIndexedObject$2(O);
454 P = toPropertyKey$2(P);
455 if (IE8_DOM_DEFINE$1) try {
456 return $getOwnPropertyDescriptor$1(O, P);
457 } catch (error) { /* empty */ }
458 if (hasOwn$5(O, P)) return createPropertyDescriptor$2(!call(propertyIsEnumerableModule.f, O, P), O[P]);
459 };
460
461 var objectDefineProperty = {};
462
463 var DESCRIPTORS$4 = descriptors;
464 var fails$5 = fails$b;
465
466 // V8 ~ Chrome 36-
467 // https://bugs.chromium.org/p/v8/issues/detail?id=3334
468 var v8PrototypeDefineBug = DESCRIPTORS$4 && fails$5(function () {
469 // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
470 return Object.defineProperty(function () { /* empty */ }, 'prototype', {
471 value: 42,
472 writable: false
473 }).prototype != 42;
474 });
475
476 var isObject$3 = isObject$7;
477
478 var $String = String;
479 var $TypeError$2 = TypeError;
480
481 // `Assert: Type(argument) is Object`
482 var anObject$2 = function (argument) {
483 if (isObject$3(argument)) return argument;
484 throw $TypeError$2($String(argument) + ' is not an object');
485 };
486
487 var DESCRIPTORS$3 = descriptors;
488 var IE8_DOM_DEFINE = ie8DomDefine;
489 var V8_PROTOTYPE_DEFINE_BUG = v8PrototypeDefineBug;
490 var anObject$1 = anObject$2;
491 var toPropertyKey$1 = toPropertyKey$3;
492
493 var $TypeError$1 = TypeError;
494 // eslint-disable-next-line es-x/no-object-defineproperty -- safe
495 var $defineProperty = Object.defineProperty;
496 // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
497 var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
498 var ENUMERABLE = 'enumerable';
499 var CONFIGURABLE$1 = 'configurable';
500 var WRITABLE = 'writable';
501
502 // `Object.defineProperty` method
503 // https://tc39.es/ecma262/#sec-object.defineproperty
504 objectDefineProperty.f = DESCRIPTORS$3 ? V8_PROTOTYPE_DEFINE_BUG ? function defineProperty(O, P, Attributes) {
505 anObject$1(O);
506 P = toPropertyKey$1(P);
507 anObject$1(Attributes);
508 if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {
509 var current = $getOwnPropertyDescriptor(O, P);
510 if (current && current[WRITABLE]) {
511 O[P] = Attributes.value;
512 Attributes = {
513 configurable: CONFIGURABLE$1 in Attributes ? Attributes[CONFIGURABLE$1] : current[CONFIGURABLE$1],
514 enumerable: ENUMERABLE in Attributes ? Attributes[ENUMERABLE] : current[ENUMERABLE],
515 writable: false
516 };
517 }
518 } return $defineProperty(O, P, Attributes);
519 } : $defineProperty : function defineProperty(O, P, Attributes) {
520 anObject$1(O);
521 P = toPropertyKey$1(P);
522 anObject$1(Attributes);
523 if (IE8_DOM_DEFINE) try {
524 return $defineProperty(O, P, Attributes);
525 } catch (error) { /* empty */ }
526 if ('get' in Attributes || 'set' in Attributes) throw $TypeError$1('Accessors not supported');
527 if ('value' in Attributes) O[P] = Attributes.value;
528 return O;
529 };
530
531 var DESCRIPTORS$2 = descriptors;
532 var definePropertyModule$2 = objectDefineProperty;
533 var createPropertyDescriptor$1 = createPropertyDescriptor$3;
534
535 var createNonEnumerableProperty$3 = DESCRIPTORS$2 ? function (object, key, value) {
536 return definePropertyModule$2.f(object, key, createPropertyDescriptor$1(1, value));
537 } : function (object, key, value) {
538 object[key] = value;
539 return object;
540 };
541
542 var makeBuiltIn$2 = {exports: {}};
543
544 var DESCRIPTORS$1 = descriptors;
545 var hasOwn$4 = hasOwnProperty_1;
546
547 var FunctionPrototype = Function.prototype;
548 // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
549 var getDescriptor = DESCRIPTORS$1 && Object.getOwnPropertyDescriptor;
550
551 var EXISTS = hasOwn$4(FunctionPrototype, 'name');
552 // additional protection from minified / mangled / dropped function names
553 var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
554 var CONFIGURABLE = EXISTS && (!DESCRIPTORS$1 || (DESCRIPTORS$1 && getDescriptor(FunctionPrototype, 'name').configurable));
555
556 var functionName = {
557 EXISTS: EXISTS,
558 PROPER: PROPER,
559 CONFIGURABLE: CONFIGURABLE
560 };
561
562 var uncurryThis$4 = functionUncurryThis;
563 var isCallable$6 = isCallable$c;
564 var store$1 = sharedStore;
565
566 var functionToString = uncurryThis$4(Function.toString);
567
568 // this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
569 if (!isCallable$6(store$1.inspectSource)) {
570 store$1.inspectSource = function (it) {
571 return functionToString(it);
572 };
573 }
574
575 var inspectSource$3 = store$1.inspectSource;
576
577 var global$3 = global$a;
578 var isCallable$5 = isCallable$c;
579 var inspectSource$2 = inspectSource$3;
580
581 var WeakMap$1 = global$3.WeakMap;
582
583 var nativeWeakMap = isCallable$5(WeakMap$1) && /native code/.test(inspectSource$2(WeakMap$1));
584
585 var shared$1 = shared$3.exports;
586 var uid = uid$2;
587
588 var keys = shared$1('keys');
589
590 var sharedKey$1 = function (key) {
591 return keys[key] || (keys[key] = uid(key));
592 };
593
594 var hiddenKeys$3 = {};
595
596 var NATIVE_WEAK_MAP = nativeWeakMap;
597 var global$2 = global$a;
598 var uncurryThis$3 = functionUncurryThis;
599 var isObject$2 = isObject$7;
600 var createNonEnumerableProperty$2 = createNonEnumerableProperty$3;
601 var hasOwn$3 = hasOwnProperty_1;
602 var shared = sharedStore;
603 var sharedKey = sharedKey$1;
604 var hiddenKeys$2 = hiddenKeys$3;
605
606 var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
607 var TypeError$1 = global$2.TypeError;
608 var WeakMap = global$2.WeakMap;
609 var set, get, has;
610
611 var enforce = function (it) {
612 return has(it) ? get(it) : set(it, {});
613 };
614
615 var getterFor = function (TYPE) {
616 return function (it) {
617 var state;
618 if (!isObject$2(it) || (state = get(it)).type !== TYPE) {
619 throw TypeError$1('Incompatible receiver, ' + TYPE + ' required');
620 } return state;
621 };
622 };
623
624 if (NATIVE_WEAK_MAP || shared.state) {
625 var store = shared.state || (shared.state = new WeakMap());
626 var wmget = uncurryThis$3(store.get);
627 var wmhas = uncurryThis$3(store.has);
628 var wmset = uncurryThis$3(store.set);
629 set = function (it, metadata) {
630 if (wmhas(store, it)) throw new TypeError$1(OBJECT_ALREADY_INITIALIZED);
631 metadata.facade = it;
632 wmset(store, it, metadata);
633 return metadata;
634 };
635 get = function (it) {
636 return wmget(store, it) || {};
637 };
638 has = function (it) {
639 return wmhas(store, it);
640 };
641 } else {
642 var STATE = sharedKey('state');
643 hiddenKeys$2[STATE] = true;
644 set = function (it, metadata) {
645 if (hasOwn$3(it, STATE)) throw new TypeError$1(OBJECT_ALREADY_INITIALIZED);
646 metadata.facade = it;
647 createNonEnumerableProperty$2(it, STATE, metadata);
648 return metadata;
649 };
650 get = function (it) {
651 return hasOwn$3(it, STATE) ? it[STATE] : {};
652 };
653 has = function (it) {
654 return hasOwn$3(it, STATE);
655 };
656 }
657
658 var internalState = {
659 set: set,
660 get: get,
661 has: has,
662 enforce: enforce,
663 getterFor: getterFor
664 };
665
666 var fails$4 = fails$b;
667 var isCallable$4 = isCallable$c;
668 var hasOwn$2 = hasOwnProperty_1;
669 var DESCRIPTORS = descriptors;
670 var CONFIGURABLE_FUNCTION_NAME = functionName.CONFIGURABLE;
671 var inspectSource$1 = inspectSource$3;
672 var InternalStateModule = internalState;
673
674 var enforceInternalState = InternalStateModule.enforce;
675 var getInternalState = InternalStateModule.get;
676 // eslint-disable-next-line es-x/no-object-defineproperty -- safe
677 var defineProperty = Object.defineProperty;
678
679 var CONFIGURABLE_LENGTH = DESCRIPTORS && !fails$4(function () {
680 return defineProperty(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
681 });
682
683 var TEMPLATE = String(String).split('String');
684
685 var makeBuiltIn$1 = makeBuiltIn$2.exports = function (value, name, options) {
686 if (String(name).slice(0, 7) === 'Symbol(') {
687 name = '[' + String(name).replace(/^Symbol\(([^)]*)\)/, '$1') + ']';
688 }
689 if (options && options.getter) name = 'get ' + name;
690 if (options && options.setter) name = 'set ' + name;
691 if (!hasOwn$2(value, 'name') || (CONFIGURABLE_FUNCTION_NAME && value.name !== name)) {
692 defineProperty(value, 'name', { value: name, configurable: true });
693 }
694 if (CONFIGURABLE_LENGTH && options && hasOwn$2(options, 'arity') && value.length !== options.arity) {
695 defineProperty(value, 'length', { value: options.arity });
696 }
697 try {
698 if (options && hasOwn$2(options, 'constructor') && options.constructor) {
699 if (DESCRIPTORS) defineProperty(value, 'prototype', { writable: false });
700 // in V8 ~ Chrome 53, prototypes of some methods, like `Array.prototype.values`, are non-writable
701 } else if (value.prototype) value.prototype = undefined;
702 } catch (error) { /* empty */ }
703 var state = enforceInternalState(value);
704 if (!hasOwn$2(state, 'source')) {
705 state.source = TEMPLATE.join(typeof name == 'string' ? name : '');
706 } return value;
707 };
708
709 // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
710 // eslint-disable-next-line no-extend-native -- required
711 Function.prototype.toString = makeBuiltIn$1(function toString() {
712 return isCallable$4(this) && getInternalState(this).source || inspectSource$1(this);
713 }, 'toString');
714
715 var isCallable$3 = isCallable$c;
716 var createNonEnumerableProperty$1 = createNonEnumerableProperty$3;
717 var makeBuiltIn = makeBuiltIn$2.exports;
718 var defineGlobalProperty$1 = defineGlobalProperty$3;
719
720 var defineBuiltIn$1 = function (O, key, value, options) {
721 if (!options) options = {};
722 var simple = options.enumerable;
723 var name = options.name !== undefined ? options.name : key;
724 if (isCallable$3(value)) makeBuiltIn(value, name, options);
725 if (options.global) {
726 if (simple) O[key] = value;
727 else defineGlobalProperty$1(key, value);
728 } else {
729 if (!options.unsafe) delete O[key];
730 else if (O[key]) simple = true;
731 if (simple) O[key] = value;
732 else createNonEnumerableProperty$1(O, key, value);
733 } return O;
734 };
735
736 var objectGetOwnPropertyNames = {};
737
738 var ceil = Math.ceil;
739 var floor = Math.floor;
740
741 // `Math.trunc` method
742 // https://tc39.es/ecma262/#sec-math.trunc
743 // eslint-disable-next-line es-x/no-math-trunc -- safe
744 var mathTrunc = Math.trunc || function trunc(x) {
745 var n = +x;
746 return (n > 0 ? floor : ceil)(n);
747 };
748
749 var trunc = mathTrunc;
750
751 // `ToIntegerOrInfinity` abstract operation
752 // https://tc39.es/ecma262/#sec-tointegerorinfinity
753 var toIntegerOrInfinity$2 = function (argument) {
754 var number = +argument;
755 // eslint-disable-next-line no-self-compare -- NaN check
756 return number !== number || number === 0 ? 0 : trunc(number);
757 };
758
759 var toIntegerOrInfinity$1 = toIntegerOrInfinity$2;
760
761 var max = Math.max;
762 var min$1 = Math.min;
763
764 // Helper for a popular repeating case of the spec:
765 // Let integer be ? ToInteger(index).
766 // If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
767 var toAbsoluteIndex$1 = function (index, length) {
768 var integer = toIntegerOrInfinity$1(index);
769 return integer < 0 ? max(integer + length, 0) : min$1(integer, length);
770 };
771
772 var toIntegerOrInfinity = toIntegerOrInfinity$2;
773
774 var min = Math.min;
775
776 // `ToLength` abstract operation
777 // https://tc39.es/ecma262/#sec-tolength
778 var toLength$1 = function (argument) {
779 return argument > 0 ? min(toIntegerOrInfinity(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
780 };
781
782 var toLength = toLength$1;
783
784 // `LengthOfArrayLike` abstract operation
785 // https://tc39.es/ecma262/#sec-lengthofarraylike
786 var lengthOfArrayLike$2 = function (obj) {
787 return toLength(obj.length);
788 };
789
790 var toIndexedObject$1 = toIndexedObject$3;
791 var toAbsoluteIndex = toAbsoluteIndex$1;
792 var lengthOfArrayLike$1 = lengthOfArrayLike$2;
793
794 // `Array.prototype.{ indexOf, includes }` methods implementation
795 var createMethod = function (IS_INCLUDES) {
796 return function ($this, el, fromIndex) {
797 var O = toIndexedObject$1($this);
798 var length = lengthOfArrayLike$1(O);
799 var index = toAbsoluteIndex(fromIndex, length);
800 var value;
801 // Array#includes uses SameValueZero equality algorithm
802 // eslint-disable-next-line no-self-compare -- NaN check
803 if (IS_INCLUDES && el != el) while (length > index) {
804 value = O[index++];
805 // eslint-disable-next-line no-self-compare -- NaN check
806 if (value != value) return true;
807 // Array#indexOf ignores holes, Array#includes - not
808 } else for (;length > index; index++) {
809 if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
810 } return !IS_INCLUDES && -1;
811 };
812 };
813
814 var arrayIncludes = {
815 // `Array.prototype.includes` method
816 // https://tc39.es/ecma262/#sec-array.prototype.includes
817 includes: createMethod(true),
818 // `Array.prototype.indexOf` method
819 // https://tc39.es/ecma262/#sec-array.prototype.indexof
820 indexOf: createMethod(false)
821 };
822
823 var uncurryThis$2 = functionUncurryThis;
824 var hasOwn$1 = hasOwnProperty_1;
825 var toIndexedObject = toIndexedObject$3;
826 var indexOf = arrayIncludes.indexOf;
827 var hiddenKeys$1 = hiddenKeys$3;
828
829 var push = uncurryThis$2([].push);
830
831 var objectKeysInternal = function (object, names) {
832 var O = toIndexedObject(object);
833 var i = 0;
834 var result = [];
835 var key;
836 for (key in O) !hasOwn$1(hiddenKeys$1, key) && hasOwn$1(O, key) && push(result, key);
837 // Don't enum bug & hidden keys
838 while (names.length > i) if (hasOwn$1(O, key = names[i++])) {
839 ~indexOf(result, key) || push(result, key);
840 }
841 return result;
842 };
843
844 // IE8- don't enum bug keys
845 var enumBugKeys$1 = [
846 'constructor',
847 'hasOwnProperty',
848 'isPrototypeOf',
849 'propertyIsEnumerable',
850 'toLocaleString',
851 'toString',
852 'valueOf'
853 ];
854
855 var internalObjectKeys = objectKeysInternal;
856 var enumBugKeys = enumBugKeys$1;
857
858 var hiddenKeys = enumBugKeys.concat('length', 'prototype');
859
860 // `Object.getOwnPropertyNames` method
861 // https://tc39.es/ecma262/#sec-object.getownpropertynames
862 // eslint-disable-next-line es-x/no-object-getownpropertynames -- safe
863 objectGetOwnPropertyNames.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
864 return internalObjectKeys(O, hiddenKeys);
865 };
866
867 var objectGetOwnPropertySymbols = {};
868
869 // eslint-disable-next-line es-x/no-object-getownpropertysymbols -- safe
870 objectGetOwnPropertySymbols.f = Object.getOwnPropertySymbols;
871
872 var getBuiltIn$1 = getBuiltIn$4;
873 var uncurryThis$1 = functionUncurryThis;
874 var getOwnPropertyNamesModule = objectGetOwnPropertyNames;
875 var getOwnPropertySymbolsModule = objectGetOwnPropertySymbols;
876 var anObject = anObject$2;
877
878 var concat = uncurryThis$1([].concat);
879
880 // all object keys, includes non-enumerable and symbols
881 var ownKeys$1 = getBuiltIn$1('Reflect', 'ownKeys') || function ownKeys(it) {
882 var keys = getOwnPropertyNamesModule.f(anObject(it));
883 var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
884 return getOwnPropertySymbols ? concat(keys, getOwnPropertySymbols(it)) : keys;
885 };
886
887 var hasOwn = hasOwnProperty_1;
888 var ownKeys = ownKeys$1;
889 var getOwnPropertyDescriptorModule = objectGetOwnPropertyDescriptor;
890 var definePropertyModule$1 = objectDefineProperty;
891
892 var copyConstructorProperties$1 = function (target, source, exceptions) {
893 var keys = ownKeys(source);
894 var defineProperty = definePropertyModule$1.f;
895 var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
896 for (var i = 0; i < keys.length; i++) {
897 var key = keys[i];
898 if (!hasOwn(target, key) && !(exceptions && hasOwn(exceptions, key))) {
899 defineProperty(target, key, getOwnPropertyDescriptor(source, key));
900 }
901 }
902 };
903
904 var fails$3 = fails$b;
905 var isCallable$2 = isCallable$c;
906
907 var replacement = /#|\.prototype\./;
908
909 var isForced$1 = function (feature, detection) {
910 var value = data[normalize(feature)];
911 return value == POLYFILL ? true
912 : value == NATIVE ? false
913 : isCallable$2(detection) ? fails$3(detection)
914 : !!detection;
915 };
916
917 var normalize = isForced$1.normalize = function (string) {
918 return String(string).replace(replacement, '.').toLowerCase();
919 };
920
921 var data = isForced$1.data = {};
922 var NATIVE = isForced$1.NATIVE = 'N';
923 var POLYFILL = isForced$1.POLYFILL = 'P';
924
925 var isForced_1 = isForced$1;
926
927 var global$1 = global$a;
928 var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
929 var createNonEnumerableProperty = createNonEnumerableProperty$3;
930 var defineBuiltIn = defineBuiltIn$1;
931 var defineGlobalProperty = defineGlobalProperty$3;
932 var copyConstructorProperties = copyConstructorProperties$1;
933 var isForced = isForced_1;
934
935 /*
936 options.target - name of the target object
937 options.global - target is the global object
938 options.stat - export as static methods of target
939 options.proto - export as prototype methods of target
940 options.real - real prototype method for the `pure` version
941 options.forced - export even if the native feature is available
942 options.bind - bind methods to the target, required for the `pure` version
943 options.wrap - wrap constructors to preventing global pollution, required for the `pure` version
944 options.unsafe - use the simple assignment of property instead of delete + defineProperty
945 options.sham - add a flag to not completely full polyfills
946 options.enumerable - export as enumerable property
947 options.dontCallGetSet - prevent calling a getter on target
948 options.name - the .name of the function if it does not match the key
949 */
950 var _export = function (options, source) {
951 var TARGET = options.target;
952 var GLOBAL = options.global;
953 var STATIC = options.stat;
954 var FORCED, target, key, targetProperty, sourceProperty, descriptor;
955 if (GLOBAL) {
956 target = global$1;
957 } else if (STATIC) {
958 target = global$1[TARGET] || defineGlobalProperty(TARGET, {});
959 } else {
960 target = (global$1[TARGET] || {}).prototype;
961 }
962 if (target) for (key in source) {
963 sourceProperty = source[key];
964 if (options.dontCallGetSet) {
965 descriptor = getOwnPropertyDescriptor(target, key);
966 targetProperty = descriptor && descriptor.value;
967 } else targetProperty = target[key];
968 FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
969 // contained in target
970 if (!FORCED && targetProperty !== undefined) {
971 if (typeof sourceProperty == typeof targetProperty) continue;
972 copyConstructorProperties(sourceProperty, targetProperty);
973 }
974 // add a flag to not completely full polyfills
975 if (options.sham || (targetProperty && targetProperty.sham)) {
976 createNonEnumerableProperty(sourceProperty, 'sham', true);
977 }
978 defineBuiltIn(target, key, sourceProperty, options);
979 }
980 };
981
982 var classof$2 = classofRaw$1;
983
984 // `IsArray` abstract operation
985 // https://tc39.es/ecma262/#sec-isarray
986 // eslint-disable-next-line es-x/no-array-isarray -- safe
987 var isArray$2 = Array.isArray || function isArray(argument) {
988 return classof$2(argument) == 'Array';
989 };
990
991 var $TypeError = TypeError;
992 var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF; // 2 ** 53 - 1 == 9007199254740991
993
994 var doesNotExceedSafeInteger$1 = function (it) {
995 if (it > MAX_SAFE_INTEGER) throw $TypeError('Maximum allowed index exceeded');
996 return it;
997 };
998
999 var toPropertyKey = toPropertyKey$3;
1000 var definePropertyModule = objectDefineProperty;
1001 var createPropertyDescriptor = createPropertyDescriptor$3;
1002
1003 var createProperty$1 = function (object, key, value) {
1004 var propertyKey = toPropertyKey(key);
1005 if (propertyKey in object) definePropertyModule.f(object, propertyKey, createPropertyDescriptor(0, value));
1006 else object[propertyKey] = value;
1007 };
1008
1009 var wellKnownSymbol$4 = wellKnownSymbol$6;
1010
1011 var TO_STRING_TAG$1 = wellKnownSymbol$4('toStringTag');
1012 var test = {};
1013
1014 test[TO_STRING_TAG$1] = 'z';
1015
1016 var toStringTagSupport = String(test) === '[object z]';
1017
1018 var TO_STRING_TAG_SUPPORT = toStringTagSupport;
1019 var isCallable$1 = isCallable$c;
1020 var classofRaw = classofRaw$1;
1021 var wellKnownSymbol$3 = wellKnownSymbol$6;
1022
1023 var TO_STRING_TAG = wellKnownSymbol$3('toStringTag');
1024 var $Object = Object;
1025
1026 // ES3 wrong here
1027 var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';
1028
1029 // fallback for IE11 Script Access Denied error
1030 var tryGet = function (it, key) {
1031 try {
1032 return it[key];
1033 } catch (error) { /* empty */ }
1034 };
1035
1036 // getting tag from ES6+ `Object.prototype.toString`
1037 var classof$1 = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
1038 var O, tag, result;
1039 return it === undefined ? 'Undefined' : it === null ? 'Null'
1040 // @@toStringTag case
1041 : typeof (tag = tryGet(O = $Object(it), TO_STRING_TAG)) == 'string' ? tag
1042 // builtinTag case
1043 : CORRECT_ARGUMENTS ? classofRaw(O)
1044 // ES3 arguments fallback
1045 : (result = classofRaw(O)) == 'Object' && isCallable$1(O.callee) ? 'Arguments' : result;
1046 };
1047
1048 var uncurryThis = functionUncurryThis;
1049 var fails$2 = fails$b;
1050 var isCallable = isCallable$c;
1051 var classof = classof$1;
1052 var getBuiltIn = getBuiltIn$4;
1053 var inspectSource = inspectSource$3;
1054
1055 var noop = function () { /* empty */ };
1056 var empty = [];
1057 var construct = getBuiltIn('Reflect', 'construct');
1058 var constructorRegExp = /^\s*(?:class|function)\b/;
1059 var exec = uncurryThis(constructorRegExp.exec);
1060 var INCORRECT_TO_STRING = !constructorRegExp.exec(noop);
1061
1062 var isConstructorModern = function isConstructor(argument) {
1063 if (!isCallable(argument)) return false;
1064 try {
1065 construct(noop, empty, argument);
1066 return true;
1067 } catch (error) {
1068 return false;
1069 }
1070 };
1071
1072 var isConstructorLegacy = function isConstructor(argument) {
1073 if (!isCallable(argument)) return false;
1074 switch (classof(argument)) {
1075 case 'AsyncFunction':
1076 case 'GeneratorFunction':
1077 case 'AsyncGeneratorFunction': return false;
1078 }
1079 try {
1080 // we can't check .prototype since constructors produced by .bind haven't it
1081 // `Function#toString` throws on some built-it function in some legacy engines
1082 // (for example, `DOMQuad` and similar in FF41-)
1083 return INCORRECT_TO_STRING || !!exec(constructorRegExp, inspectSource(argument));
1084 } catch (error) {
1085 return true;
1086 }
1087 };
1088
1089 isConstructorLegacy.sham = true;
1090
1091 // `IsConstructor` abstract operation
1092 // https://tc39.es/ecma262/#sec-isconstructor
1093 var isConstructor$1 = !construct || fails$2(function () {
1094 var called;
1095 return isConstructorModern(isConstructorModern.call)
1096 || !isConstructorModern(Object)
1097 || !isConstructorModern(function () { called = true; })
1098 || called;
1099 }) ? isConstructorLegacy : isConstructorModern;
1100
1101 var isArray$1 = isArray$2;
1102 var isConstructor = isConstructor$1;
1103 var isObject$1 = isObject$7;
1104 var wellKnownSymbol$2 = wellKnownSymbol$6;
1105
1106 var SPECIES$1 = wellKnownSymbol$2('species');
1107 var $Array = Array;
1108
1109 // a part of `ArraySpeciesCreate` abstract operation
1110 // https://tc39.es/ecma262/#sec-arrayspeciescreate
1111 var arraySpeciesConstructor$1 = function (originalArray) {
1112 var C;
1113 if (isArray$1(originalArray)) {
1114 C = originalArray.constructor;
1115 // cross-realm fallback
1116 if (isConstructor(C) && (C === $Array || isArray$1(C.prototype))) C = undefined;
1117 else if (isObject$1(C)) {
1118 C = C[SPECIES$1];
1119 if (C === null) C = undefined;
1120 }
1121 } return C === undefined ? $Array : C;
1122 };
1123
1124 var arraySpeciesConstructor = arraySpeciesConstructor$1;
1125
1126 // `ArraySpeciesCreate` abstract operation
1127 // https://tc39.es/ecma262/#sec-arrayspeciescreate
1128 var arraySpeciesCreate$1 = function (originalArray, length) {
1129 return new (arraySpeciesConstructor(originalArray))(length === 0 ? 0 : length);
1130 };
1131
1132 var fails$1 = fails$b;
1133 var wellKnownSymbol$1 = wellKnownSymbol$6;
1134 var V8_VERSION$1 = engineV8Version;
1135
1136 var SPECIES = wellKnownSymbol$1('species');
1137
1138 var arrayMethodHasSpeciesSupport$1 = function (METHOD_NAME) {
1139 // We can't use this feature detection in V8 since it causes
1140 // deoptimization and serious performance degradation
1141 // https://github.com/zloirock/core-js/issues/677
1142 return V8_VERSION$1 >= 51 || !fails$1(function () {
1143 var array = [];
1144 var constructor = array.constructor = {};
1145 constructor[SPECIES] = function () {
1146 return { foo: 1 };
1147 };
1148 return array[METHOD_NAME](Boolean).foo !== 1;
1149 });
1150 };
1151
1152 var $ = _export;
1153 var fails = fails$b;
1154 var isArray = isArray$2;
1155 var isObject = isObject$7;
1156 var toObject = toObject$2;
1157 var lengthOfArrayLike = lengthOfArrayLike$2;
1158 var doesNotExceedSafeInteger = doesNotExceedSafeInteger$1;
1159 var createProperty = createProperty$1;
1160 var arraySpeciesCreate = arraySpeciesCreate$1;
1161 var arrayMethodHasSpeciesSupport = arrayMethodHasSpeciesSupport$1;
1162 var wellKnownSymbol = wellKnownSymbol$6;
1163 var V8_VERSION = engineV8Version;
1164
1165 var IS_CONCAT_SPREADABLE = wellKnownSymbol('isConcatSpreadable');
1166
1167 // We can't use this feature detection in V8 since it causes
1168 // deoptimization and serious performance degradation
1169 // https://github.com/zloirock/core-js/issues/679
1170 var IS_CONCAT_SPREADABLE_SUPPORT = V8_VERSION >= 51 || !fails(function () {
1171 var array = [];
1172 array[IS_CONCAT_SPREADABLE] = false;
1173 return array.concat()[0] !== array;
1174 });
1175
1176 var SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('concat');
1177
1178 var isConcatSpreadable = function (O) {
1179 if (!isObject(O)) return false;
1180 var spreadable = O[IS_CONCAT_SPREADABLE];
1181 return spreadable !== undefined ? !!spreadable : isArray(O);
1182 };
1183
1184 var FORCED = !IS_CONCAT_SPREADABLE_SUPPORT || !SPECIES_SUPPORT;
1185
1186 // `Array.prototype.concat` method
1187 // https://tc39.es/ecma262/#sec-array.prototype.concat
1188 // with adding support of @@isConcatSpreadable and @@species
1189 $({ target: 'Array', proto: true, arity: 1, forced: FORCED }, {
1190 // eslint-disable-next-line no-unused-vars -- required for `.length`
1191 concat: function concat(arg) {
1192 var O = toObject(this);
1193 var A = arraySpeciesCreate(O, 0);
1194 var n = 0;
1195 var i, k, length, len, E;
1196 for (i = -1, length = arguments.length; i < length; i++) {
1197 E = i === -1 ? O : arguments[i];
1198 if (isConcatSpreadable(E)) {
1199 len = lengthOfArrayLike(E);
1200 doesNotExceedSafeInteger(n + len);
1201 for (k = 0; k < len; k++, n++) if (k in E) createProperty(A, n, E[k]);
1202 } else {
1203 doesNotExceedSafeInteger(n + 1);
1204 createProperty(A, n++, E);
1205 }
1206 }
1207 A.length = n;
1208 return A;
1209 }
1210 });
1211
1212 /**
1213 * Bootstrap Table danish translation
1214 * Author: Your Name Jan Borup Coyle, github@coyle.dk
1215 */
1216
1217 $__default["default"].fn.bootstrapTable.locales['da-DK'] = $__default["default"].fn.bootstrapTable.locales['da'] = {
1218 formatCopyRows: function formatCopyRows() {
1219 return 'Copy Rows';
1220 },
1221 formatPrint: function formatPrint() {
1222 return 'Print';
1223 },
1224 formatLoadingMessage: function formatLoadingMessage() {
1225 return 'Indlæser, vent venligst';
1226 },
1227 formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
1228 return "".concat(pageNumber, " poster pr side");
1229 },
1230 formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
1231 if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
1232 return "Viser ".concat(pageFrom, " til ").concat(pageTo, " af ").concat(totalRows, " r\xE6kke").concat(totalRows > 1 ? 'r' : '', " (filtered from ").concat(totalNotFiltered, " total rows)");
1233 }
1234
1235 return "Viser ".concat(pageFrom, " til ").concat(pageTo, " af ").concat(totalRows, " r\xE6kke").concat(totalRows > 1 ? 'r' : '');
1236 },
1237 formatSRPaginationPreText: function formatSRPaginationPreText() {
1238 return 'previous page';
1239 },
1240 formatSRPaginationPageText: function formatSRPaginationPageText(page) {
1241 return "to page ".concat(page);
1242 },
1243 formatSRPaginationNextText: function formatSRPaginationNextText() {
1244 return 'next page';
1245 },
1246 formatDetailPagination: function formatDetailPagination(totalRows) {
1247 return "Viser ".concat(totalRows, " r\xE6kke").concat(totalRows > 1 ? 'r' : '');
1248 },
1249 formatClearSearch: function formatClearSearch() {
1250 return 'Ryd filtre';
1251 },
1252 formatSearch: function formatSearch() {
1253 return 'Søg';
1254 },
1255 formatNoMatches: function formatNoMatches() {
1256 return 'Ingen poster fundet';
1257 },
1258 formatPaginationSwitch: function formatPaginationSwitch() {
1259 return 'Skjul/vis nummerering';
1260 },
1261 formatPaginationSwitchDown: function formatPaginationSwitchDown() {
1262 return 'Show pagination';
1263 },
1264 formatPaginationSwitchUp: function formatPaginationSwitchUp() {
1265 return 'Hide pagination';
1266 },
1267 formatRefresh: function formatRefresh() {
1268 return 'Opdater';
1269 },
1270 formatToggleOn: function formatToggleOn() {
1271 return 'Show card view';
1272 },
1273 formatToggleOff: function formatToggleOff() {
1274 return 'Hide card view';
1275 },
1276 formatColumns: function formatColumns() {
1277 return 'Kolonner';
1278 },
1279 formatColumnsToggleAll: function formatColumnsToggleAll() {
1280 return 'Toggle all';
1281 },
1282 formatFullscreen: function formatFullscreen() {
1283 return 'Fullscreen';
1284 },
1285 formatAllRows: function formatAllRows() {
1286 return 'Alle';
1287 },
1288 formatAutoRefresh: function formatAutoRefresh() {
1289 return 'Auto Refresh';
1290 },
1291 formatExport: function formatExport() {
1292 return 'Eksporter';
1293 },
1294 formatJumpTo: function formatJumpTo() {
1295 return 'GO';
1296 },
1297 formatAdvancedSearch: function formatAdvancedSearch() {
1298 return 'Advanced search';
1299 },
1300 formatAdvancedCloseButton: function formatAdvancedCloseButton() {
1301 return 'Close';
1302 },
1303 formatFilterControlSwitch: function formatFilterControlSwitch() {
1304 return 'Hide/Show controls';
1305 },
1306 formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
1307 return 'Hide controls';
1308 },
1309 formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
1310 return 'Show controls';
1311 }
1312 };
1313 $__default["default"].extend($__default["default"].fn.bootstrapTable.defaults, $__default["default"].fn.bootstrapTable.locales['da-DK']);
1314
1315}));