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 ($$2) { 'use strict';
|
6 |
|
7 | var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
|
8 |
|
9 | var check = function (it) {
|
10 | return it && it.Math == Math && it;
|
11 | };
|
12 |
|
13 |
|
14 | var global$a =
|
15 |
|
16 | check(typeof globalThis == 'object' && globalThis) ||
|
17 | check(typeof window == 'object' && window) ||
|
18 |
|
19 | check(typeof self == 'object' && self) ||
|
20 | check(typeof commonjsGlobal == 'object' && commonjsGlobal) ||
|
21 |
|
22 | (function () { return this; })() || Function('return this')();
|
23 |
|
24 | var objectGetOwnPropertyDescriptor = {};
|
25 |
|
26 | var fails$c = function (exec) {
|
27 | try {
|
28 | return !!exec();
|
29 | } catch (error) {
|
30 | return true;
|
31 | }
|
32 | };
|
33 |
|
34 | var fails$b = fails$c;
|
35 |
|
36 |
|
37 | var descriptors = !fails$b(function () {
|
38 |
|
39 | return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
|
40 | });
|
41 |
|
42 | var fails$a = fails$c;
|
43 |
|
44 | var functionBindNative = !fails$a(function () {
|
45 |
|
46 | var test = (function () { }).bind();
|
47 |
|
48 | return typeof test != 'function' || test.hasOwnProperty('prototype');
|
49 | });
|
50 |
|
51 | var NATIVE_BIND$1 = functionBindNative;
|
52 |
|
53 | var call$5 = Function.prototype.call;
|
54 |
|
55 | var functionCall = NATIVE_BIND$1 ? call$5.bind(call$5) : function () {
|
56 | return call$5.apply(call$5, arguments);
|
57 | };
|
58 |
|
59 | var objectPropertyIsEnumerable = {};
|
60 |
|
61 | var $propertyIsEnumerable = {}.propertyIsEnumerable;
|
62 |
|
63 | var getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
|
64 |
|
65 |
|
66 | var NASHORN_BUG = getOwnPropertyDescriptor$1 && !$propertyIsEnumerable.call({ 1: 2 }, 1);
|
67 |
|
68 |
|
69 |
|
70 | objectPropertyIsEnumerable.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
|
71 | var descriptor = getOwnPropertyDescriptor$1(this, V);
|
72 | return !!descriptor && descriptor.enumerable;
|
73 | } : $propertyIsEnumerable;
|
74 |
|
75 | var createPropertyDescriptor$3 = function (bitmap, value) {
|
76 | return {
|
77 | enumerable: !(bitmap & 1),
|
78 | configurable: !(bitmap & 2),
|
79 | writable: !(bitmap & 4),
|
80 | value: value
|
81 | };
|
82 | };
|
83 |
|
84 | var NATIVE_BIND = functionBindNative;
|
85 |
|
86 | var FunctionPrototype$1 = Function.prototype;
|
87 | var call$4 = FunctionPrototype$1.call;
|
88 | var uncurryThisWithBind = NATIVE_BIND && FunctionPrototype$1.bind.bind(call$4, call$4);
|
89 |
|
90 | var functionUncurryThis = NATIVE_BIND ? uncurryThisWithBind : function (fn) {
|
91 | return function () {
|
92 | return call$4.apply(fn, arguments);
|
93 | };
|
94 | };
|
95 |
|
96 | var uncurryThis$a = functionUncurryThis;
|
97 |
|
98 | var toString$1 = uncurryThis$a({}.toString);
|
99 | var stringSlice$1 = uncurryThis$a(''.slice);
|
100 |
|
101 | var classofRaw$1 = function (it) {
|
102 | return stringSlice$1(toString$1(it), 8, -1);
|
103 | };
|
104 |
|
105 | var uncurryThis$9 = functionUncurryThis;
|
106 | var fails$9 = fails$c;
|
107 | var classof$3 = classofRaw$1;
|
108 |
|
109 | var $Object$3 = Object;
|
110 | var split = uncurryThis$9(''.split);
|
111 |
|
112 |
|
113 | var indexedObject = fails$9(function () {
|
114 |
|
115 |
|
116 | return !$Object$3('z').propertyIsEnumerable(0);
|
117 | }) ? function (it) {
|
118 | return classof$3(it) == 'String' ? split(it, '') : $Object$3(it);
|
119 | } : $Object$3;
|
120 |
|
121 |
|
122 |
|
123 | var isNullOrUndefined$2 = function (it) {
|
124 | return it === null || it === undefined;
|
125 | };
|
126 |
|
127 | var isNullOrUndefined$1 = isNullOrUndefined$2;
|
128 |
|
129 | var $TypeError$6 = TypeError;
|
130 |
|
131 |
|
132 |
|
133 | var requireObjectCoercible$2 = function (it) {
|
134 | if (isNullOrUndefined$1(it)) throw $TypeError$6("Can't call method on " + it);
|
135 | return it;
|
136 | };
|
137 |
|
138 |
|
139 | var IndexedObject$1 = indexedObject;
|
140 | var requireObjectCoercible$1 = requireObjectCoercible$2;
|
141 |
|
142 | var toIndexedObject$3 = function (it) {
|
143 | return IndexedObject$1(requireObjectCoercible$1(it));
|
144 | };
|
145 |
|
146 | var documentAll$2 = typeof document == 'object' && document.all;
|
147 |
|
148 |
|
149 |
|
150 | var IS_HTMLDDA = typeof documentAll$2 == 'undefined' && documentAll$2 !== undefined;
|
151 |
|
152 | var documentAll_1 = {
|
153 | all: documentAll$2,
|
154 | IS_HTMLDDA: IS_HTMLDDA
|
155 | };
|
156 |
|
157 | var $documentAll$1 = documentAll_1;
|
158 |
|
159 | var documentAll$1 = $documentAll$1.all;
|
160 |
|
161 |
|
162 |
|
163 | var isCallable$c = $documentAll$1.IS_HTMLDDA ? function (argument) {
|
164 | return typeof argument == 'function' || argument === documentAll$1;
|
165 | } : function (argument) {
|
166 | return typeof argument == 'function';
|
167 | };
|
168 |
|
169 | var isCallable$b = isCallable$c;
|
170 | var $documentAll = documentAll_1;
|
171 |
|
172 | var documentAll = $documentAll.all;
|
173 |
|
174 | var isObject$7 = $documentAll.IS_HTMLDDA ? function (it) {
|
175 | return typeof it == 'object' ? it !== null : isCallable$b(it) || it === documentAll;
|
176 | } : function (it) {
|
177 | return typeof it == 'object' ? it !== null : isCallable$b(it);
|
178 | };
|
179 |
|
180 | var global$9 = global$a;
|
181 | var isCallable$a = isCallable$c;
|
182 |
|
183 | var aFunction = function (argument) {
|
184 | return isCallable$a(argument) ? argument : undefined;
|
185 | };
|
186 |
|
187 | var getBuiltIn$3 = function (namespace, method) {
|
188 | return arguments.length < 2 ? aFunction(global$9[namespace]) : global$9[namespace] && global$9[namespace][method];
|
189 | };
|
190 |
|
191 | var uncurryThis$8 = functionUncurryThis;
|
192 |
|
193 | var objectIsPrototypeOf = uncurryThis$8({}.isPrototypeOf);
|
194 |
|
195 | var engineUserAgent = typeof navigator != 'undefined' && String(navigator.userAgent) || '';
|
196 |
|
197 | var global$8 = global$a;
|
198 | var userAgent = engineUserAgent;
|
199 |
|
200 | var process = global$8.process;
|
201 | var Deno = global$8.Deno;
|
202 | var versions = process && process.versions || Deno && Deno.version;
|
203 | var v8 = versions && versions.v8;
|
204 | var match, version;
|
205 |
|
206 | if (v8) {
|
207 | match = v8.split('.');
|
208 |
|
209 |
|
210 | version = match[0] > 0 && match[0] < 4 ? 1 : +(match[0] + match[1]);
|
211 | }
|
212 |
|
213 |
|
214 |
|
215 | if (!version && userAgent) {
|
216 | match = userAgent.match(/Edge\/(\d+)/);
|
217 | if (!match || match[1] >= 74) {
|
218 | match = userAgent.match(/Chrome\/(\d+)/);
|
219 | if (match) version = +match[1];
|
220 | }
|
221 | }
|
222 |
|
223 | var engineV8Version = version;
|
224 |
|
225 |
|
226 |
|
227 | var V8_VERSION$2 = engineV8Version;
|
228 | var fails$8 = fails$c;
|
229 |
|
230 |
|
231 | var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails$8(function () {
|
232 | var symbol = Symbol();
|
233 |
|
234 |
|
235 | return !String(symbol) || !(Object(symbol) instanceof Symbol) ||
|
236 |
|
237 | !Symbol.sham && V8_VERSION$2 && V8_VERSION$2 < 41;
|
238 | });
|
239 |
|
240 |
|
241 |
|
242 | var NATIVE_SYMBOL$1 = symbolConstructorDetection;
|
243 |
|
244 | var useSymbolAsUid = NATIVE_SYMBOL$1
|
245 | && !Symbol.sham
|
246 | && typeof Symbol.iterator == 'symbol';
|
247 |
|
248 | var getBuiltIn$2 = getBuiltIn$3;
|
249 | var isCallable$9 = isCallable$c;
|
250 | var isPrototypeOf = objectIsPrototypeOf;
|
251 | var USE_SYMBOL_AS_UID$1 = useSymbolAsUid;
|
252 |
|
253 | var $Object$2 = Object;
|
254 |
|
255 | var isSymbol$2 = USE_SYMBOL_AS_UID$1 ? function (it) {
|
256 | return typeof it == 'symbol';
|
257 | } : function (it) {
|
258 | var $Symbol = getBuiltIn$2('Symbol');
|
259 | return isCallable$9($Symbol) && isPrototypeOf($Symbol.prototype, $Object$2(it));
|
260 | };
|
261 |
|
262 | var $String$2 = String;
|
263 |
|
264 | var tryToString$1 = function (argument) {
|
265 | try {
|
266 | return $String$2(argument);
|
267 | } catch (error) {
|
268 | return 'Object';
|
269 | }
|
270 | };
|
271 |
|
272 | var isCallable$8 = isCallable$c;
|
273 | var tryToString = tryToString$1;
|
274 |
|
275 | var $TypeError$5 = TypeError;
|
276 |
|
277 |
|
278 | var aCallable$1 = function (argument) {
|
279 | if (isCallable$8(argument)) return argument;
|
280 | throw $TypeError$5(tryToString(argument) + ' is not a function');
|
281 | };
|
282 |
|
283 | var aCallable = aCallable$1;
|
284 | var isNullOrUndefined = isNullOrUndefined$2;
|
285 |
|
286 |
|
287 |
|
288 | var getMethod$1 = function (V, P) {
|
289 | var func = V[P];
|
290 | return isNullOrUndefined(func) ? undefined : aCallable(func);
|
291 | };
|
292 |
|
293 | var call$3 = functionCall;
|
294 | var isCallable$7 = isCallable$c;
|
295 | var isObject$6 = isObject$7;
|
296 |
|
297 | var $TypeError$4 = TypeError;
|
298 |
|
299 |
|
300 |
|
301 | var ordinaryToPrimitive$1 = function (input, pref) {
|
302 | var fn, val;
|
303 | if (pref === 'string' && isCallable$7(fn = input.toString) && !isObject$6(val = call$3(fn, input))) return val;
|
304 | if (isCallable$7(fn = input.valueOf) && !isObject$6(val = call$3(fn, input))) return val;
|
305 | if (pref !== 'string' && isCallable$7(fn = input.toString) && !isObject$6(val = call$3(fn, input))) return val;
|
306 | throw $TypeError$4("Can't convert object to primitive value");
|
307 | };
|
308 |
|
309 | var sharedExports = {};
|
310 | var shared$3 = {
|
311 | get exports(){ return sharedExports; },
|
312 | set exports(v){ sharedExports = v; },
|
313 | };
|
314 |
|
315 | var global$7 = global$a;
|
316 |
|
317 |
|
318 | var defineProperty$2 = Object.defineProperty;
|
319 |
|
320 | var defineGlobalProperty$3 = function (key, value) {
|
321 | try {
|
322 | defineProperty$2(global$7, key, { value: value, configurable: true, writable: true });
|
323 | } catch (error) {
|
324 | global$7[key] = value;
|
325 | } return value;
|
326 | };
|
327 |
|
328 | var global$6 = global$a;
|
329 | var defineGlobalProperty$2 = defineGlobalProperty$3;
|
330 |
|
331 | var SHARED = '__core-js_shared__';
|
332 | var store$3 = global$6[SHARED] || defineGlobalProperty$2(SHARED, {});
|
333 |
|
334 | var sharedStore = store$3;
|
335 |
|
336 | var store$2 = sharedStore;
|
337 |
|
338 | (shared$3.exports = function (key, value) {
|
339 | return store$2[key] || (store$2[key] = value !== undefined ? value : {});
|
340 | })('versions', []).push({
|
341 | version: '3.29.0',
|
342 | mode: 'global',
|
343 | copyright: '© 2014-2023 Denis Pushkarev (zloirock.ru)',
|
344 | license: 'https://github.com/zloirock/core-js/blob/v3.29.0/LICENSE',
|
345 | source: 'https://github.com/zloirock/core-js'
|
346 | });
|
347 |
|
348 | var requireObjectCoercible = requireObjectCoercible$2;
|
349 |
|
350 | var $Object$1 = Object;
|
351 |
|
352 |
|
353 |
|
354 | var toObject$3 = function (argument) {
|
355 | return $Object$1(requireObjectCoercible(argument));
|
356 | };
|
357 |
|
358 | var uncurryThis$7 = functionUncurryThis;
|
359 | var toObject$2 = toObject$3;
|
360 |
|
361 | var hasOwnProperty = uncurryThis$7({}.hasOwnProperty);
|
362 |
|
363 |
|
364 |
|
365 |
|
366 | var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
|
367 | return hasOwnProperty(toObject$2(it), key);
|
368 | };
|
369 |
|
370 | var uncurryThis$6 = functionUncurryThis;
|
371 |
|
372 | var id = 0;
|
373 | var postfix = Math.random();
|
374 | var toString = uncurryThis$6(1.0.toString);
|
375 |
|
376 | var uid$2 = function (key) {
|
377 | return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36);
|
378 | };
|
379 |
|
380 | var global$5 = global$a;
|
381 | var shared$2 = sharedExports;
|
382 | var hasOwn$6 = hasOwnProperty_1;
|
383 | var uid$1 = uid$2;
|
384 | var NATIVE_SYMBOL = symbolConstructorDetection;
|
385 | var USE_SYMBOL_AS_UID = useSymbolAsUid;
|
386 |
|
387 | var Symbol$1 = global$5.Symbol;
|
388 | var WellKnownSymbolsStore = shared$2('wks');
|
389 | var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol$1['for'] || Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid$1;
|
390 |
|
391 | var wellKnownSymbol$6 = function (name) {
|
392 | if (!hasOwn$6(WellKnownSymbolsStore, name)) {
|
393 | WellKnownSymbolsStore[name] = NATIVE_SYMBOL && hasOwn$6(Symbol$1, name)
|
394 | ? Symbol$1[name]
|
395 | : createWellKnownSymbol('Symbol.' + name);
|
396 | } return WellKnownSymbolsStore[name];
|
397 | };
|
398 |
|
399 | var call$2 = functionCall;
|
400 | var isObject$5 = isObject$7;
|
401 | var isSymbol$1 = isSymbol$2;
|
402 | var getMethod = getMethod$1;
|
403 | var ordinaryToPrimitive = ordinaryToPrimitive$1;
|
404 | var wellKnownSymbol$5 = wellKnownSymbol$6;
|
405 |
|
406 | var $TypeError$3 = TypeError;
|
407 | var TO_PRIMITIVE = wellKnownSymbol$5('toPrimitive');
|
408 |
|
409 |
|
410 |
|
411 | var toPrimitive$1 = function (input, pref) {
|
412 | if (!isObject$5(input) || isSymbol$1(input)) return input;
|
413 | var exoticToPrim = getMethod(input, TO_PRIMITIVE);
|
414 | var result;
|
415 | if (exoticToPrim) {
|
416 | if (pref === undefined) pref = 'default';
|
417 | result = call$2(exoticToPrim, input, pref);
|
418 | if (!isObject$5(result) || isSymbol$1(result)) return result;
|
419 | throw $TypeError$3("Can't convert object to primitive value");
|
420 | }
|
421 | if (pref === undefined) pref = 'number';
|
422 | return ordinaryToPrimitive(input, pref);
|
423 | };
|
424 |
|
425 | var toPrimitive = toPrimitive$1;
|
426 | var isSymbol = isSymbol$2;
|
427 |
|
428 |
|
429 |
|
430 | var toPropertyKey$3 = function (argument) {
|
431 | var key = toPrimitive(argument, 'string');
|
432 | return isSymbol(key) ? key : key + '';
|
433 | };
|
434 |
|
435 | var global$4 = global$a;
|
436 | var isObject$4 = isObject$7;
|
437 |
|
438 | var document$1 = global$4.document;
|
439 |
|
440 | var EXISTS$1 = isObject$4(document$1) && isObject$4(document$1.createElement);
|
441 |
|
442 | var documentCreateElement = function (it) {
|
443 | return EXISTS$1 ? document$1.createElement(it) : {};
|
444 | };
|
445 |
|
446 | var DESCRIPTORS$7 = descriptors;
|
447 | var fails$7 = fails$c;
|
448 | var createElement = documentCreateElement;
|
449 |
|
450 |
|
451 | var ie8DomDefine = !DESCRIPTORS$7 && !fails$7(function () {
|
452 |
|
453 | return Object.defineProperty(createElement('div'), 'a', {
|
454 | get: function () { return 7; }
|
455 | }).a != 7;
|
456 | });
|
457 |
|
458 | var DESCRIPTORS$6 = descriptors;
|
459 | var call$1 = functionCall;
|
460 | var propertyIsEnumerableModule$1 = objectPropertyIsEnumerable;
|
461 | var createPropertyDescriptor$2 = createPropertyDescriptor$3;
|
462 | var toIndexedObject$2 = toIndexedObject$3;
|
463 | var toPropertyKey$2 = toPropertyKey$3;
|
464 | var hasOwn$5 = hasOwnProperty_1;
|
465 | var IE8_DOM_DEFINE$1 = ie8DomDefine;
|
466 |
|
467 |
|
468 | var $getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
|
469 |
|
470 |
|
471 |
|
472 | objectGetOwnPropertyDescriptor.f = DESCRIPTORS$6 ? $getOwnPropertyDescriptor$1 : function getOwnPropertyDescriptor(O, P) {
|
473 | O = toIndexedObject$2(O);
|
474 | P = toPropertyKey$2(P);
|
475 | if (IE8_DOM_DEFINE$1) try {
|
476 | return $getOwnPropertyDescriptor$1(O, P);
|
477 | } catch (error) { }
|
478 | if (hasOwn$5(O, P)) return createPropertyDescriptor$2(!call$1(propertyIsEnumerableModule$1.f, O, P), O[P]);
|
479 | };
|
480 |
|
481 | var objectDefineProperty = {};
|
482 |
|
483 | var DESCRIPTORS$5 = descriptors;
|
484 | var fails$6 = fails$c;
|
485 |
|
486 |
|
487 |
|
488 | var v8PrototypeDefineBug = DESCRIPTORS$5 && fails$6(function () {
|
489 |
|
490 | return Object.defineProperty(function () { }, 'prototype', {
|
491 | value: 42,
|
492 | writable: false
|
493 | }).prototype != 42;
|
494 | });
|
495 |
|
496 | var isObject$3 = isObject$7;
|
497 |
|
498 | var $String$1 = String;
|
499 | var $TypeError$2 = TypeError;
|
500 |
|
501 |
|
502 | var anObject$2 = function (argument) {
|
503 | if (isObject$3(argument)) return argument;
|
504 | throw $TypeError$2($String$1(argument) + ' is not an object');
|
505 | };
|
506 |
|
507 | var DESCRIPTORS$4 = descriptors;
|
508 | var IE8_DOM_DEFINE = ie8DomDefine;
|
509 | var V8_PROTOTYPE_DEFINE_BUG = v8PrototypeDefineBug;
|
510 | var anObject$1 = anObject$2;
|
511 | var toPropertyKey$1 = toPropertyKey$3;
|
512 |
|
513 | var $TypeError$1 = TypeError;
|
514 |
|
515 | var $defineProperty = Object.defineProperty;
|
516 |
|
517 | var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
518 | var ENUMERABLE = 'enumerable';
|
519 | var CONFIGURABLE$1 = 'configurable';
|
520 | var WRITABLE = 'writable';
|
521 |
|
522 |
|
523 |
|
524 | objectDefineProperty.f = DESCRIPTORS$4 ? V8_PROTOTYPE_DEFINE_BUG ? function defineProperty(O, P, Attributes) {
|
525 | anObject$1(O);
|
526 | P = toPropertyKey$1(P);
|
527 | anObject$1(Attributes);
|
528 | if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {
|
529 | var current = $getOwnPropertyDescriptor(O, P);
|
530 | if (current && current[WRITABLE]) {
|
531 | O[P] = Attributes.value;
|
532 | Attributes = {
|
533 | configurable: CONFIGURABLE$1 in Attributes ? Attributes[CONFIGURABLE$1] : current[CONFIGURABLE$1],
|
534 | enumerable: ENUMERABLE in Attributes ? Attributes[ENUMERABLE] : current[ENUMERABLE],
|
535 | writable: false
|
536 | };
|
537 | }
|
538 | } return $defineProperty(O, P, Attributes);
|
539 | } : $defineProperty : function defineProperty(O, P, Attributes) {
|
540 | anObject$1(O);
|
541 | P = toPropertyKey$1(P);
|
542 | anObject$1(Attributes);
|
543 | if (IE8_DOM_DEFINE) try {
|
544 | return $defineProperty(O, P, Attributes);
|
545 | } catch (error) { }
|
546 | if ('get' in Attributes || 'set' in Attributes) throw $TypeError$1('Accessors not supported');
|
547 | if ('value' in Attributes) O[P] = Attributes.value;
|
548 | return O;
|
549 | };
|
550 |
|
551 | var DESCRIPTORS$3 = descriptors;
|
552 | var definePropertyModule$3 = objectDefineProperty;
|
553 | var createPropertyDescriptor$1 = createPropertyDescriptor$3;
|
554 |
|
555 | var createNonEnumerableProperty$2 = DESCRIPTORS$3 ? function (object, key, value) {
|
556 | return definePropertyModule$3.f(object, key, createPropertyDescriptor$1(1, value));
|
557 | } : function (object, key, value) {
|
558 | object[key] = value;
|
559 | return object;
|
560 | };
|
561 |
|
562 | var makeBuiltInExports = {};
|
563 | var makeBuiltIn$2 = {
|
564 | get exports(){ return makeBuiltInExports; },
|
565 | set exports(v){ makeBuiltInExports = v; },
|
566 | };
|
567 |
|
568 | var DESCRIPTORS$2 = descriptors;
|
569 | var hasOwn$4 = hasOwnProperty_1;
|
570 |
|
571 | var FunctionPrototype = Function.prototype;
|
572 |
|
573 | var getDescriptor = DESCRIPTORS$2 && Object.getOwnPropertyDescriptor;
|
574 |
|
575 | var EXISTS = hasOwn$4(FunctionPrototype, 'name');
|
576 |
|
577 | var PROPER = EXISTS && (function something() { }).name === 'something';
|
578 | var CONFIGURABLE = EXISTS && (!DESCRIPTORS$2 || (DESCRIPTORS$2 && getDescriptor(FunctionPrototype, 'name').configurable));
|
579 |
|
580 | var functionName = {
|
581 | EXISTS: EXISTS,
|
582 | PROPER: PROPER,
|
583 | CONFIGURABLE: CONFIGURABLE
|
584 | };
|
585 |
|
586 | var uncurryThis$5 = functionUncurryThis;
|
587 | var isCallable$6 = isCallable$c;
|
588 | var store$1 = sharedStore;
|
589 |
|
590 | var functionToString = uncurryThis$5(Function.toString);
|
591 |
|
592 |
|
593 | if (!isCallable$6(store$1.inspectSource)) {
|
594 | store$1.inspectSource = function (it) {
|
595 | return functionToString(it);
|
596 | };
|
597 | }
|
598 |
|
599 | var inspectSource$2 = store$1.inspectSource;
|
600 |
|
601 | var global$3 = global$a;
|
602 | var isCallable$5 = isCallable$c;
|
603 |
|
604 | var WeakMap$1 = global$3.WeakMap;
|
605 |
|
606 | var weakMapBasicDetection = isCallable$5(WeakMap$1) && /native code/.test(String(WeakMap$1));
|
607 |
|
608 | var shared$1 = sharedExports;
|
609 | var uid = uid$2;
|
610 |
|
611 | var keys = shared$1('keys');
|
612 |
|
613 | var sharedKey$1 = function (key) {
|
614 | return keys[key] || (keys[key] = uid(key));
|
615 | };
|
616 |
|
617 | var hiddenKeys$3 = {};
|
618 |
|
619 | var NATIVE_WEAK_MAP = weakMapBasicDetection;
|
620 | var global$2 = global$a;
|
621 | var isObject$2 = isObject$7;
|
622 | var createNonEnumerableProperty$1 = createNonEnumerableProperty$2;
|
623 | var hasOwn$3 = hasOwnProperty_1;
|
624 | var shared = sharedStore;
|
625 | var sharedKey = sharedKey$1;
|
626 | var hiddenKeys$2 = hiddenKeys$3;
|
627 |
|
628 | var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
|
629 | var TypeError$1 = global$2.TypeError;
|
630 | var WeakMap = global$2.WeakMap;
|
631 | var set, get, has;
|
632 |
|
633 | var enforce = function (it) {
|
634 | return has(it) ? get(it) : set(it, {});
|
635 | };
|
636 |
|
637 | var getterFor = function (TYPE) {
|
638 | return function (it) {
|
639 | var state;
|
640 | if (!isObject$2(it) || (state = get(it)).type !== TYPE) {
|
641 | throw TypeError$1('Incompatible receiver, ' + TYPE + ' required');
|
642 | } return state;
|
643 | };
|
644 | };
|
645 |
|
646 | if (NATIVE_WEAK_MAP || shared.state) {
|
647 | var store = shared.state || (shared.state = new WeakMap());
|
648 |
|
649 | store.get = store.get;
|
650 | store.has = store.has;
|
651 | store.set = store.set;
|
652 |
|
653 | set = function (it, metadata) {
|
654 | if (store.has(it)) throw TypeError$1(OBJECT_ALREADY_INITIALIZED);
|
655 | metadata.facade = it;
|
656 | store.set(it, metadata);
|
657 | return metadata;
|
658 | };
|
659 | get = function (it) {
|
660 | return store.get(it) || {};
|
661 | };
|
662 | has = function (it) {
|
663 | return store.has(it);
|
664 | };
|
665 | } else {
|
666 | var STATE = sharedKey('state');
|
667 | hiddenKeys$2[STATE] = true;
|
668 | set = function (it, metadata) {
|
669 | if (hasOwn$3(it, STATE)) throw TypeError$1(OBJECT_ALREADY_INITIALIZED);
|
670 | metadata.facade = it;
|
671 | createNonEnumerableProperty$1(it, STATE, metadata);
|
672 | return metadata;
|
673 | };
|
674 | get = function (it) {
|
675 | return hasOwn$3(it, STATE) ? it[STATE] : {};
|
676 | };
|
677 | has = function (it) {
|
678 | return hasOwn$3(it, STATE);
|
679 | };
|
680 | }
|
681 |
|
682 | var internalState = {
|
683 | set: set,
|
684 | get: get,
|
685 | has: has,
|
686 | enforce: enforce,
|
687 | getterFor: getterFor
|
688 | };
|
689 |
|
690 | var uncurryThis$4 = functionUncurryThis;
|
691 | var fails$5 = fails$c;
|
692 | var isCallable$4 = isCallable$c;
|
693 | var hasOwn$2 = hasOwnProperty_1;
|
694 | var DESCRIPTORS$1 = descriptors;
|
695 | var CONFIGURABLE_FUNCTION_NAME = functionName.CONFIGURABLE;
|
696 | var inspectSource$1 = inspectSource$2;
|
697 | var InternalStateModule = internalState;
|
698 |
|
699 | var enforceInternalState = InternalStateModule.enforce;
|
700 | var getInternalState = InternalStateModule.get;
|
701 | var $String = String;
|
702 | // eslint-disable-next-line es/no-object-defineproperty -- safe
|
703 | var defineProperty$1 = Object.defineProperty;
|
704 | var stringSlice = uncurryThis$4(''.slice);
|
705 | var replace = uncurryThis$4(''.replace);
|
706 | var join = uncurryThis$4([].join);
|
707 |
|
708 | var CONFIGURABLE_LENGTH = DESCRIPTORS$1 && !fails$5(function () {
|
709 | return defineProperty$1(function () { }, 'length', { value: 8 }).length !== 8;
|
710 | });
|
711 |
|
712 | var TEMPLATE = String(String).split('String');
|
713 |
|
714 | var makeBuiltIn$1 = makeBuiltIn$2.exports = function (value, name, options) {
|
715 | if (stringSlice($String(name), 0, 7) === 'Symbol(') {
|
716 | name = '[' + replace($String(name), /^Symbol\(([^)]*)\)/, '$1') + ']';
|
717 | }
|
718 | if (options && options.getter) name = 'get ' + name;
|
719 | if (options && options.setter) name = 'set ' + name;
|
720 | if (!hasOwn$2(value, 'name') || (CONFIGURABLE_FUNCTION_NAME && value.name !== name)) {
|
721 | if (DESCRIPTORS$1) defineProperty$1(value, 'name', { value: name, configurable: true });
|
722 | else value.name = name;
|
723 | }
|
724 | if (CONFIGURABLE_LENGTH && options && hasOwn$2(options, 'arity') && value.length !== options.arity) {
|
725 | defineProperty$1(value, 'length', { value: options.arity });
|
726 | }
|
727 | try {
|
728 | if (options && hasOwn$2(options, 'constructor') && options.constructor) {
|
729 | if (DESCRIPTORS$1) defineProperty$1(value, 'prototype', { writable: false });
|
730 |
|
731 | } else if (value.prototype) value.prototype = undefined;
|
732 | } catch (error) { }
|
733 | var state = enforceInternalState(value);
|
734 | if (!hasOwn$2(state, 'source')) {
|
735 | state.source = join(TEMPLATE, typeof name == 'string' ? name : '');
|
736 | } return value;
|
737 | };
|
738 |
|
739 |
|
740 |
|
741 | Function.prototype.toString = makeBuiltIn$1(function toString() {
|
742 | return isCallable$4(this) && getInternalState(this).source || inspectSource$1(this);
|
743 | }, 'toString');
|
744 |
|
745 | var isCallable$3 = isCallable$c;
|
746 | var definePropertyModule$2 = objectDefineProperty;
|
747 | var makeBuiltIn = makeBuiltInExports;
|
748 | var defineGlobalProperty$1 = defineGlobalProperty$3;
|
749 |
|
750 | var defineBuiltIn$1 = function (O, key, value, options) {
|
751 | if (!options) options = {};
|
752 | var simple = options.enumerable;
|
753 | var name = options.name !== undefined ? options.name : key;
|
754 | if (isCallable$3(value)) makeBuiltIn(value, name, options);
|
755 | if (options.global) {
|
756 | if (simple) O[key] = value;
|
757 | else defineGlobalProperty$1(key, value);
|
758 | } else {
|
759 | try {
|
760 | if (!options.unsafe) delete O[key];
|
761 | else if (O[key]) simple = true;
|
762 | } catch (error) { }
|
763 | if (simple) O[key] = value;
|
764 | else definePropertyModule$2.f(O, key, {
|
765 | value: value,
|
766 | enumerable: false,
|
767 | configurable: !options.nonConfigurable,
|
768 | writable: !options.nonWritable
|
769 | });
|
770 | } return O;
|
771 | };
|
772 |
|
773 | var objectGetOwnPropertyNames = {};
|
774 |
|
775 | var ceil = Math.ceil;
|
776 | var floor = Math.floor;
|
777 |
|
778 |
|
779 |
|
780 |
|
781 | var mathTrunc = Math.trunc || function trunc(x) {
|
782 | var n = +x;
|
783 | return (n > 0 ? floor : ceil)(n);
|
784 | };
|
785 |
|
786 | var trunc = mathTrunc;
|
787 |
|
788 |
|
789 |
|
790 | var toIntegerOrInfinity$2 = function (argument) {
|
791 | var number = +argument;
|
792 |
|
793 | return number !== number || number === 0 ? 0 : trunc(number);
|
794 | };
|
795 |
|
796 | var toIntegerOrInfinity$1 = toIntegerOrInfinity$2;
|
797 |
|
798 | var max = Math.max;
|
799 | var min$1 = Math.min;
|
800 |
|
801 |
|
802 |
|
803 |
|
804 | var toAbsoluteIndex$1 = function (index, length) {
|
805 | var integer = toIntegerOrInfinity$1(index);
|
806 | return integer < 0 ? max(integer + length, 0) : min$1(integer, length);
|
807 | };
|
808 |
|
809 | var toIntegerOrInfinity = toIntegerOrInfinity$2;
|
810 |
|
811 | var min = Math.min;
|
812 |
|
813 |
|
814 |
|
815 | var toLength$1 = function (argument) {
|
816 | return argument > 0 ? min(toIntegerOrInfinity(argument), 0x1FFFFFFFFFFFFF) : 0;
|
817 | };
|
818 |
|
819 | var toLength = toLength$1;
|
820 |
|
821 |
|
822 |
|
823 | var lengthOfArrayLike$2 = function (obj) {
|
824 | return toLength(obj.length);
|
825 | };
|
826 |
|
827 | var toIndexedObject$1 = toIndexedObject$3;
|
828 | var toAbsoluteIndex = toAbsoluteIndex$1;
|
829 | var lengthOfArrayLike$1 = lengthOfArrayLike$2;
|
830 |
|
831 |
|
832 | var createMethod = function (IS_INCLUDES) {
|
833 | return function ($this, el, fromIndex) {
|
834 | var O = toIndexedObject$1($this);
|
835 | var length = lengthOfArrayLike$1(O);
|
836 | var index = toAbsoluteIndex(fromIndex, length);
|
837 | var value;
|
838 |
|
839 |
|
840 | if (IS_INCLUDES && el != el) while (length > index) {
|
841 | value = O[index++];
|
842 |
|
843 | if (value != value) return true;
|
844 |
|
845 | } else for (;length > index; index++) {
|
846 | if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
|
847 | } return !IS_INCLUDES && -1;
|
848 | };
|
849 | };
|
850 |
|
851 | var arrayIncludes = {
|
852 |
|
853 |
|
854 | includes: createMethod(true),
|
855 |
|
856 |
|
857 | indexOf: createMethod(false)
|
858 | };
|
859 |
|
860 | var uncurryThis$3 = functionUncurryThis;
|
861 | var hasOwn$1 = hasOwnProperty_1;
|
862 | var toIndexedObject = toIndexedObject$3;
|
863 | var indexOf = arrayIncludes.indexOf;
|
864 | var hiddenKeys$1 = hiddenKeys$3;
|
865 |
|
866 | var push = uncurryThis$3([].push);
|
867 |
|
868 | var objectKeysInternal = function (object, names) {
|
869 | var O = toIndexedObject(object);
|
870 | var i = 0;
|
871 | var result = [];
|
872 | var key;
|
873 | for (key in O) !hasOwn$1(hiddenKeys$1, key) && hasOwn$1(O, key) && push(result, key);
|
874 |
|
875 | while (names.length > i) if (hasOwn$1(O, key = names[i++])) {
|
876 | ~indexOf(result, key) || push(result, key);
|
877 | }
|
878 | return result;
|
879 | };
|
880 |
|
881 |
|
882 | var enumBugKeys$2 = [
|
883 | 'constructor',
|
884 | 'hasOwnProperty',
|
885 | 'isPrototypeOf',
|
886 | 'propertyIsEnumerable',
|
887 | 'toLocaleString',
|
888 | 'toString',
|
889 | 'valueOf'
|
890 | ];
|
891 |
|
892 | var internalObjectKeys$1 = objectKeysInternal;
|
893 | var enumBugKeys$1 = enumBugKeys$2;
|
894 |
|
895 | var hiddenKeys = enumBugKeys$1.concat('length', 'prototype');
|
896 |
|
897 |
|
898 |
|
899 |
|
900 | objectGetOwnPropertyNames.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
|
901 | return internalObjectKeys$1(O, hiddenKeys);
|
902 | };
|
903 |
|
904 | var objectGetOwnPropertySymbols = {};
|
905 |
|
906 |
|
907 | objectGetOwnPropertySymbols.f = Object.getOwnPropertySymbols;
|
908 |
|
909 | var getBuiltIn$1 = getBuiltIn$3;
|
910 | var uncurryThis$2 = functionUncurryThis;
|
911 | var getOwnPropertyNamesModule = objectGetOwnPropertyNames;
|
912 | var getOwnPropertySymbolsModule$1 = objectGetOwnPropertySymbols;
|
913 | var anObject = anObject$2;
|
914 |
|
915 | var concat$1 = uncurryThis$2([].concat);
|
916 |
|
917 |
|
918 | var ownKeys$1 = getBuiltIn$1('Reflect', 'ownKeys') || function ownKeys(it) {
|
919 | var keys = getOwnPropertyNamesModule.f(anObject(it));
|
920 | var getOwnPropertySymbols = getOwnPropertySymbolsModule$1.f;
|
921 | return getOwnPropertySymbols ? concat$1(keys, getOwnPropertySymbols(it)) : keys;
|
922 | };
|
923 |
|
924 | var hasOwn = hasOwnProperty_1;
|
925 | var ownKeys = ownKeys$1;
|
926 | var getOwnPropertyDescriptorModule = objectGetOwnPropertyDescriptor;
|
927 | var definePropertyModule$1 = objectDefineProperty;
|
928 |
|
929 | var copyConstructorProperties$1 = function (target, source, exceptions) {
|
930 | var keys = ownKeys(source);
|
931 | var defineProperty = definePropertyModule$1.f;
|
932 | var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
|
933 | for (var i = 0; i < keys.length; i++) {
|
934 | var key = keys[i];
|
935 | if (!hasOwn(target, key) && !(exceptions && hasOwn(exceptions, key))) {
|
936 | defineProperty(target, key, getOwnPropertyDescriptor(source, key));
|
937 | }
|
938 | }
|
939 | };
|
940 |
|
941 | var fails$4 = fails$c;
|
942 | var isCallable$2 = isCallable$c;
|
943 |
|
944 | var replacement = /#|\.prototype\./;
|
945 |
|
946 | var isForced$1 = function (feature, detection) {
|
947 | var value = data[normalize(feature)];
|
948 | return value == POLYFILL ? true
|
949 | : value == NATIVE ? false
|
950 | : isCallable$2(detection) ? fails$4(detection)
|
951 | : !!detection;
|
952 | };
|
953 |
|
954 | var normalize = isForced$1.normalize = function (string) {
|
955 | return String(string).replace(replacement, '.').toLowerCase();
|
956 | };
|
957 |
|
958 | var data = isForced$1.data = {};
|
959 | var NATIVE = isForced$1.NATIVE = 'N';
|
960 | var POLYFILL = isForced$1.POLYFILL = 'P';
|
961 |
|
962 | var isForced_1 = isForced$1;
|
963 |
|
964 | var global$1 = global$a;
|
965 | var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
|
966 | var createNonEnumerableProperty = createNonEnumerableProperty$2;
|
967 | var defineBuiltIn = defineBuiltIn$1;
|
968 | var defineGlobalProperty = defineGlobalProperty$3;
|
969 | var copyConstructorProperties = copyConstructorProperties$1;
|
970 | var isForced = isForced_1;
|
971 |
|
972 | |
973 |
|
974 |
|
975 |
|
976 |
|
977 |
|
978 |
|
979 |
|
980 |
|
981 |
|
982 |
|
983 |
|
984 |
|
985 |
|
986 |
|
987 | var _export = function (options, source) {
|
988 | var TARGET = options.target;
|
989 | var GLOBAL = options.global;
|
990 | var STATIC = options.stat;
|
991 | var FORCED, target, key, targetProperty, sourceProperty, descriptor;
|
992 | if (GLOBAL) {
|
993 | target = global$1;
|
994 | } else if (STATIC) {
|
995 | target = global$1[TARGET] || defineGlobalProperty(TARGET, {});
|
996 | } else {
|
997 | target = (global$1[TARGET] || {}).prototype;
|
998 | }
|
999 | if (target) for (key in source) {
|
1000 | sourceProperty = source[key];
|
1001 | if (options.dontCallGetSet) {
|
1002 | descriptor = getOwnPropertyDescriptor(target, key);
|
1003 | targetProperty = descriptor && descriptor.value;
|
1004 | } else targetProperty = target[key];
|
1005 | FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
|
1006 |
|
1007 | if (!FORCED && targetProperty !== undefined) {
|
1008 | if (typeof sourceProperty == typeof targetProperty) continue;
|
1009 | copyConstructorProperties(sourceProperty, targetProperty);
|
1010 | }
|
1011 |
|
1012 | if (options.sham || (targetProperty && targetProperty.sham)) {
|
1013 | createNonEnumerableProperty(sourceProperty, 'sham', true);
|
1014 | }
|
1015 | defineBuiltIn(target, key, sourceProperty, options);
|
1016 | }
|
1017 | };
|
1018 |
|
1019 | var classof$2 = classofRaw$1;
|
1020 |
|
1021 |
|
1022 |
|
1023 |
|
1024 | var isArray$2 = Array.isArray || function isArray(argument) {
|
1025 | return classof$2(argument) == 'Array';
|
1026 | };
|
1027 |
|
1028 | var $TypeError = TypeError;
|
1029 | var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF;
|
1030 |
|
1031 | var doesNotExceedSafeInteger$1 = function (it) {
|
1032 | if (it > MAX_SAFE_INTEGER) throw $TypeError('Maximum allowed index exceeded');
|
1033 | return it;
|
1034 | };
|
1035 |
|
1036 | var toPropertyKey = toPropertyKey$3;
|
1037 | var definePropertyModule = objectDefineProperty;
|
1038 | var createPropertyDescriptor = createPropertyDescriptor$3;
|
1039 |
|
1040 | var createProperty$1 = function (object, key, value) {
|
1041 | var propertyKey = toPropertyKey(key);
|
1042 | if (propertyKey in object) definePropertyModule.f(object, propertyKey, createPropertyDescriptor(0, value));
|
1043 | else object[propertyKey] = value;
|
1044 | };
|
1045 |
|
1046 | var wellKnownSymbol$4 = wellKnownSymbol$6;
|
1047 |
|
1048 | var TO_STRING_TAG$1 = wellKnownSymbol$4('toStringTag');
|
1049 | var test = {};
|
1050 |
|
1051 | test[TO_STRING_TAG$1] = 'z';
|
1052 |
|
1053 | var toStringTagSupport = String(test) === '[object z]';
|
1054 |
|
1055 | var TO_STRING_TAG_SUPPORT = toStringTagSupport;
|
1056 | var isCallable$1 = isCallable$c;
|
1057 | var classofRaw = classofRaw$1;
|
1058 | var wellKnownSymbol$3 = wellKnownSymbol$6;
|
1059 |
|
1060 | var TO_STRING_TAG = wellKnownSymbol$3('toStringTag');
|
1061 | var $Object = Object;
|
1062 |
|
1063 |
|
1064 | var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';
|
1065 |
|
1066 |
|
1067 | var tryGet = function (it, key) {
|
1068 | try {
|
1069 | return it[key];
|
1070 | } catch (error) { }
|
1071 | };
|
1072 |
|
1073 |
|
1074 | var classof$1 = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
|
1075 | var O, tag, result;
|
1076 | return it === undefined ? 'Undefined' : it === null ? 'Null'
|
1077 |
|
1078 | : typeof (tag = tryGet(O = $Object(it), TO_STRING_TAG)) == 'string' ? tag
|
1079 |
|
1080 | : CORRECT_ARGUMENTS ? classofRaw(O)
|
1081 |
|
1082 | : (result = classofRaw(O)) == 'Object' && isCallable$1(O.callee) ? 'Arguments' : result;
|
1083 | };
|
1084 |
|
1085 | var uncurryThis$1 = functionUncurryThis;
|
1086 | var fails$3 = fails$c;
|
1087 | var isCallable = isCallable$c;
|
1088 | var classof = classof$1;
|
1089 | var getBuiltIn = getBuiltIn$3;
|
1090 | var inspectSource = inspectSource$2;
|
1091 |
|
1092 | var noop = function () { };
|
1093 | var empty = [];
|
1094 | var construct = getBuiltIn('Reflect', 'construct');
|
1095 | var constructorRegExp = /^\s*(?:class|function)\b/;
|
1096 | var exec = uncurryThis$1(constructorRegExp.exec);
|
1097 | var INCORRECT_TO_STRING = !constructorRegExp.exec(noop);
|
1098 |
|
1099 | var isConstructorModern = function isConstructor(argument) {
|
1100 | if (!isCallable(argument)) return false;
|
1101 | try {
|
1102 | construct(noop, empty, argument);
|
1103 | return true;
|
1104 | } catch (error) {
|
1105 | return false;
|
1106 | }
|
1107 | };
|
1108 |
|
1109 | var isConstructorLegacy = function isConstructor(argument) {
|
1110 | if (!isCallable(argument)) return false;
|
1111 | switch (classof(argument)) {
|
1112 | case 'AsyncFunction':
|
1113 | case 'GeneratorFunction':
|
1114 | case 'AsyncGeneratorFunction': return false;
|
1115 | }
|
1116 | try {
|
1117 |
|
1118 |
|
1119 |
|
1120 | return INCORRECT_TO_STRING || !!exec(constructorRegExp, inspectSource(argument));
|
1121 | } catch (error) {
|
1122 | return true;
|
1123 | }
|
1124 | };
|
1125 |
|
1126 | isConstructorLegacy.sham = true;
|
1127 |
|
1128 |
|
1129 |
|
1130 | var isConstructor$1 = !construct || fails$3(function () {
|
1131 | var called;
|
1132 | return isConstructorModern(isConstructorModern.call)
|
1133 | || !isConstructorModern(Object)
|
1134 | || !isConstructorModern(function () { called = true; })
|
1135 | || called;
|
1136 | }) ? isConstructorLegacy : isConstructorModern;
|
1137 |
|
1138 | var isArray$1 = isArray$2;
|
1139 | var isConstructor = isConstructor$1;
|
1140 | var isObject$1 = isObject$7;
|
1141 | var wellKnownSymbol$2 = wellKnownSymbol$6;
|
1142 |
|
1143 | var SPECIES$1 = wellKnownSymbol$2('species');
|
1144 | var $Array = Array;
|
1145 |
|
1146 |
|
1147 |
|
1148 | var arraySpeciesConstructor$1 = function (originalArray) {
|
1149 | var C;
|
1150 | if (isArray$1(originalArray)) {
|
1151 | C = originalArray.constructor;
|
1152 |
|
1153 | if (isConstructor(C) && (C === $Array || isArray$1(C.prototype))) C = undefined;
|
1154 | else if (isObject$1(C)) {
|
1155 | C = C[SPECIES$1];
|
1156 | if (C === null) C = undefined;
|
1157 | }
|
1158 | } return C === undefined ? $Array : C;
|
1159 | };
|
1160 |
|
1161 | var arraySpeciesConstructor = arraySpeciesConstructor$1;
|
1162 |
|
1163 |
|
1164 |
|
1165 | var arraySpeciesCreate$1 = function (originalArray, length) {
|
1166 | return new (arraySpeciesConstructor(originalArray))(length === 0 ? 0 : length);
|
1167 | };
|
1168 |
|
1169 | var fails$2 = fails$c;
|
1170 | var wellKnownSymbol$1 = wellKnownSymbol$6;
|
1171 | var V8_VERSION$1 = engineV8Version;
|
1172 |
|
1173 | var SPECIES = wellKnownSymbol$1('species');
|
1174 |
|
1175 | var arrayMethodHasSpeciesSupport$1 = function (METHOD_NAME) {
|
1176 |
|
1177 |
|
1178 |
|
1179 | return V8_VERSION$1 >= 51 || !fails$2(function () {
|
1180 | var array = [];
|
1181 | var constructor = array.constructor = {};
|
1182 | constructor[SPECIES] = function () {
|
1183 | return { foo: 1 };
|
1184 | };
|
1185 | return array[METHOD_NAME](Boolean).foo !== 1;
|
1186 | });
|
1187 | };
|
1188 |
|
1189 | var $$1 = _export;
|
1190 | var fails$1 = fails$c;
|
1191 | var isArray = isArray$2;
|
1192 | var isObject = isObject$7;
|
1193 | var toObject$1 = toObject$3;
|
1194 | var lengthOfArrayLike = lengthOfArrayLike$2;
|
1195 | var doesNotExceedSafeInteger = doesNotExceedSafeInteger$1;
|
1196 | var createProperty = createProperty$1;
|
1197 | var arraySpeciesCreate = arraySpeciesCreate$1;
|
1198 | var arrayMethodHasSpeciesSupport = arrayMethodHasSpeciesSupport$1;
|
1199 | var wellKnownSymbol = wellKnownSymbol$6;
|
1200 | var V8_VERSION = engineV8Version;
|
1201 |
|
1202 | var IS_CONCAT_SPREADABLE = wellKnownSymbol('isConcatSpreadable');
|
1203 |
|
1204 |
|
1205 |
|
1206 |
|
1207 | var IS_CONCAT_SPREADABLE_SUPPORT = V8_VERSION >= 51 || !fails$1(function () {
|
1208 | var array = [];
|
1209 | array[IS_CONCAT_SPREADABLE] = false;
|
1210 | return array.concat()[0] !== array;
|
1211 | });
|
1212 |
|
1213 | var isConcatSpreadable = function (O) {
|
1214 | if (!isObject(O)) return false;
|
1215 | var spreadable = O[IS_CONCAT_SPREADABLE];
|
1216 | return spreadable !== undefined ? !!spreadable : isArray(O);
|
1217 | };
|
1218 |
|
1219 | var FORCED = !IS_CONCAT_SPREADABLE_SUPPORT || !arrayMethodHasSpeciesSupport('concat');
|
1220 |
|
1221 |
|
1222 |
|
1223 |
|
1224 | $$1({ target: 'Array', proto: true, arity: 1, forced: FORCED }, {
|
1225 |
|
1226 | concat: function concat(arg) {
|
1227 | var O = toObject$1(this);
|
1228 | var A = arraySpeciesCreate(O, 0);
|
1229 | var n = 0;
|
1230 | var i, k, length, len, E;
|
1231 | for (i = -1, length = arguments.length; i < length; i++) {
|
1232 | E = i === -1 ? O : arguments[i];
|
1233 | if (isConcatSpreadable(E)) {
|
1234 | len = lengthOfArrayLike(E);
|
1235 | doesNotExceedSafeInteger(n + len);
|
1236 | for (k = 0; k < len; k++, n++) if (k in E) createProperty(A, n, E[k]);
|
1237 | } else {
|
1238 | doesNotExceedSafeInteger(n + 1);
|
1239 | createProperty(A, n++, E);
|
1240 | }
|
1241 | }
|
1242 | A.length = n;
|
1243 | return A;
|
1244 | }
|
1245 | });
|
1246 |
|
1247 | var internalObjectKeys = objectKeysInternal;
|
1248 | var enumBugKeys = enumBugKeys$2;
|
1249 |
|
1250 |
|
1251 |
|
1252 |
|
1253 | var objectKeys$1 = Object.keys || function keys(O) {
|
1254 | return internalObjectKeys(O, enumBugKeys);
|
1255 | };
|
1256 |
|
1257 | var DESCRIPTORS = descriptors;
|
1258 | var uncurryThis = functionUncurryThis;
|
1259 | var call = functionCall;
|
1260 | var fails = fails$c;
|
1261 | var objectKeys = objectKeys$1;
|
1262 | var getOwnPropertySymbolsModule = objectGetOwnPropertySymbols;
|
1263 | var propertyIsEnumerableModule = objectPropertyIsEnumerable;
|
1264 | var toObject = toObject$3;
|
1265 | var IndexedObject = indexedObject;
|
1266 |
|
1267 |
|
1268 | var $assign = Object.assign;
|
1269 |
|
1270 | var defineProperty = Object.defineProperty;
|
1271 | var concat = uncurryThis([].concat);
|
1272 |
|
1273 |
|
1274 |
|
1275 | var objectAssign = !$assign || fails(function () {
|
1276 |
|
1277 | if (DESCRIPTORS && $assign({ b: 1 }, $assign(defineProperty({}, 'a', {
|
1278 | enumerable: true,
|
1279 | get: function () {
|
1280 | defineProperty(this, 'b', {
|
1281 | value: 3,
|
1282 | enumerable: false
|
1283 | });
|
1284 | }
|
1285 | }), { b: 2 })).b !== 1) return true;
|
1286 |
|
1287 | var A = {};
|
1288 | var B = {};
|
1289 |
|
1290 | var symbol = Symbol();
|
1291 | var alphabet = 'abcdefghijklmnopqrst';
|
1292 | A[symbol] = 7;
|
1293 | alphabet.split('').forEach(function (chr) { B[chr] = chr; });
|
1294 | return $assign({}, A)[symbol] != 7 || objectKeys($assign({}, B)).join('') != alphabet;
|
1295 | }) ? function assign(target, source) {
|
1296 | var T = toObject(target);
|
1297 | var argumentsLength = arguments.length;
|
1298 | var index = 1;
|
1299 | var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
|
1300 | var propertyIsEnumerable = propertyIsEnumerableModule.f;
|
1301 | while (argumentsLength > index) {
|
1302 | var S = IndexedObject(arguments[index++]);
|
1303 | var keys = getOwnPropertySymbols ? concat(objectKeys(S), getOwnPropertySymbols(S)) : objectKeys(S);
|
1304 | var length = keys.length;
|
1305 | var j = 0;
|
1306 | var key;
|
1307 | while (length > j) {
|
1308 | key = keys[j++];
|
1309 | if (!DESCRIPTORS || call(propertyIsEnumerable, S, key)) T[key] = S[key];
|
1310 | }
|
1311 | } return T;
|
1312 | } : $assign;
|
1313 |
|
1314 | var $ = _export;
|
1315 | var assign = objectAssign;
|
1316 |
|
1317 |
|
1318 |
|
1319 |
|
1320 | $({ target: 'Object', stat: true, arity: 2, forced: Object.assign !== assign }, {
|
1321 | assign: assign
|
1322 | });
|
1323 |
|
1324 | |
1325 |
|
1326 |
|
1327 |
|
1328 |
|
1329 | $$2.fn.bootstrapTable.locales['fr-CH'] = {
|
1330 | formatCopyRows: function formatCopyRows() {
|
1331 | return 'Copy Rows';
|
1332 | },
|
1333 | formatPrint: function formatPrint() {
|
1334 | return 'Print';
|
1335 | },
|
1336 | formatLoadingMessage: function formatLoadingMessage() {
|
1337 | return 'Chargement en cours';
|
1338 | },
|
1339 | formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
1340 | return "".concat(pageNumber, " lignes par page");
|
1341 | },
|
1342 | formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
1343 | if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
1344 | return "Affiche de ".concat(pageFrom, " \xE0 ").concat(pageTo, " sur ").concat(totalRows, " lignes (filtr\xE9s \xE0 partir de ").concat(totalNotFiltered, " lignes)");
|
1345 | }
|
1346 | return "Affiche de ".concat(pageFrom, " \xE0 ").concat(pageTo, " sur ").concat(totalRows, " lignes");
|
1347 | },
|
1348 | formatSRPaginationPreText: function formatSRPaginationPreText() {
|
1349 | return 'page précédente';
|
1350 | },
|
1351 | formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
1352 | return "vers la page ".concat(page);
|
1353 | },
|
1354 | formatSRPaginationNextText: function formatSRPaginationNextText() {
|
1355 | return 'page suivante';
|
1356 | },
|
1357 | formatDetailPagination: function formatDetailPagination(totalRows) {
|
1358 | return "Affiche ".concat(totalRows, " lignes");
|
1359 | },
|
1360 | formatClearSearch: function formatClearSearch() {
|
1361 | return 'Effacer la recherche';
|
1362 | },
|
1363 | formatSearch: function formatSearch() {
|
1364 | return 'Recherche';
|
1365 | },
|
1366 | formatNoMatches: function formatNoMatches() {
|
1367 | return 'Pas de lignes trouvés';
|
1368 | },
|
1369 | formatPaginationSwitch: function formatPaginationSwitch() {
|
1370 | return 'Cacher/Afficher pagination';
|
1371 | },
|
1372 | formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
1373 | return 'Afficher pagination';
|
1374 | },
|
1375 | formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
1376 | return 'Cacher pagination';
|
1377 | },
|
1378 | formatRefresh: function formatRefresh() {
|
1379 | return 'Rafraichir';
|
1380 | },
|
1381 | formatToggleOn: function formatToggleOn() {
|
1382 | return 'Afficher vue carte';
|
1383 | },
|
1384 | formatToggleOff: function formatToggleOff() {
|
1385 | return 'Cacher vue carte';
|
1386 | },
|
1387 | formatColumns: function formatColumns() {
|
1388 | return 'Colonnes';
|
1389 | },
|
1390 | formatColumnsToggleAll: function formatColumnsToggleAll() {
|
1391 | return 'Tout basculer';
|
1392 | },
|
1393 | formatFullscreen: function formatFullscreen() {
|
1394 | return 'Plein écran';
|
1395 | },
|
1396 | formatAllRows: function formatAllRows() {
|
1397 | return 'Tout';
|
1398 | },
|
1399 | formatAutoRefresh: function formatAutoRefresh() {
|
1400 | return 'Rafraîchissement automatique';
|
1401 | },
|
1402 | formatExport: function formatExport() {
|
1403 | return 'Exporter les données';
|
1404 | },
|
1405 | formatJumpTo: function formatJumpTo() {
|
1406 | return 'Aller à';
|
1407 | },
|
1408 | formatAdvancedSearch: function formatAdvancedSearch() {
|
1409 | return 'Recherche avancée';
|
1410 | },
|
1411 | formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
1412 | return 'Fermer';
|
1413 | },
|
1414 | formatFilterControlSwitch: function formatFilterControlSwitch() {
|
1415 | return 'Cacher/Afficher controls';
|
1416 | },
|
1417 | formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
|
1418 | return 'Cacher controls';
|
1419 | },
|
1420 | formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
|
1421 | return 'Afficher controls';
|
1422 | }
|
1423 | };
|
1424 | Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['fr-CH']);
|
1425 |
|
1426 | }));
|