UNPKG

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