UNPKG

76.5 kBJavaScriptView Raw
1var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
2
3function createCommonjsModule(fn, module) {
4 return module = { exports: {} }, fn(module, module.exports), module.exports;
5}
6
7var check = function (it) {
8 return it && it.Math == Math && it;
9};
10
11// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
12var global_1 =
13 // eslint-disable-next-line no-undef
14 check(typeof globalThis == 'object' && globalThis) ||
15 check(typeof window == 'object' && window) ||
16 check(typeof self == 'object' && self) ||
17 check(typeof commonjsGlobal == 'object' && commonjsGlobal) ||
18 // eslint-disable-next-line no-new-func
19 Function('return this')();
20
21var fails = function (exec) {
22 try {
23 return !!exec();
24 } catch (error) {
25 return true;
26 }
27};
28
29// Thank's IE8 for his funny defineProperty
30var descriptors = !fails(function () {
31 return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;
32});
33
34var nativePropertyIsEnumerable = {}.propertyIsEnumerable;
35var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
36
37// Nashorn ~ JDK8 bug
38var NASHORN_BUG = getOwnPropertyDescriptor && !nativePropertyIsEnumerable.call({ 1: 2 }, 1);
39
40// `Object.prototype.propertyIsEnumerable` method implementation
41// https://tc39.github.io/ecma262/#sec-object.prototype.propertyisenumerable
42var f = NASHORN_BUG ? function propertyIsEnumerable(V) {
43 var descriptor = getOwnPropertyDescriptor(this, V);
44 return !!descriptor && descriptor.enumerable;
45} : nativePropertyIsEnumerable;
46
47var objectPropertyIsEnumerable = {
48 f: f
49};
50
51var createPropertyDescriptor = function (bitmap, value) {
52 return {
53 enumerable: !(bitmap & 1),
54 configurable: !(bitmap & 2),
55 writable: !(bitmap & 4),
56 value: value
57 };
58};
59
60var toString = {}.toString;
61
62var classofRaw = function (it) {
63 return toString.call(it).slice(8, -1);
64};
65
66var split = ''.split;
67
68// fallback for non-array-like ES3 and non-enumerable old V8 strings
69var indexedObject = fails(function () {
70 // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
71 // eslint-disable-next-line no-prototype-builtins
72 return !Object('z').propertyIsEnumerable(0);
73}) ? function (it) {
74 return classofRaw(it) == 'String' ? split.call(it, '') : Object(it);
75} : Object;
76
77// `RequireObjectCoercible` abstract operation
78// https://tc39.github.io/ecma262/#sec-requireobjectcoercible
79var requireObjectCoercible = function (it) {
80 if (it == undefined) throw TypeError("Can't call method on " + it);
81 return it;
82};
83
84// toObject with fallback for non-array-like ES3 strings
85
86
87
88var toIndexedObject = function (it) {
89 return indexedObject(requireObjectCoercible(it));
90};
91
92var isObject = function (it) {
93 return typeof it === 'object' ? it !== null : typeof it === 'function';
94};
95
96// `ToPrimitive` abstract operation
97// https://tc39.github.io/ecma262/#sec-toprimitive
98// instead of the ES6 spec version, we didn't implement @@toPrimitive case
99// and the second argument - flag - preferred type is a string
100var toPrimitive = function (input, PREFERRED_STRING) {
101 if (!isObject(input)) return input;
102 var fn, val;
103 if (PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;
104 if (typeof (fn = input.valueOf) == 'function' && !isObject(val = fn.call(input))) return val;
105 if (!PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;
106 throw TypeError("Can't convert object to primitive value");
107};
108
109var hasOwnProperty = {}.hasOwnProperty;
110
111var has = function (it, key) {
112 return hasOwnProperty.call(it, key);
113};
114
115var document$1 = global_1.document;
116// typeof document.createElement is 'object' in old IE
117var EXISTS = isObject(document$1) && isObject(document$1.createElement);
118
119var documentCreateElement = function (it) {
120 return EXISTS ? document$1.createElement(it) : {};
121};
122
123// Thank's IE8 for his funny defineProperty
124var ie8DomDefine = !descriptors && !fails(function () {
125 return Object.defineProperty(documentCreateElement('div'), 'a', {
126 get: function () { return 7; }
127 }).a != 7;
128});
129
130var nativeGetOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
131
132// `Object.getOwnPropertyDescriptor` method
133// https://tc39.github.io/ecma262/#sec-object.getownpropertydescriptor
134var f$1 = descriptors ? nativeGetOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {
135 O = toIndexedObject(O);
136 P = toPrimitive(P, true);
137 if (ie8DomDefine) try {
138 return nativeGetOwnPropertyDescriptor(O, P);
139 } catch (error) { /* empty */ }
140 if (has(O, P)) return createPropertyDescriptor(!objectPropertyIsEnumerable.f.call(O, P), O[P]);
141};
142
143var objectGetOwnPropertyDescriptor = {
144 f: f$1
145};
146
147var anObject = function (it) {
148 if (!isObject(it)) {
149 throw TypeError(String(it) + ' is not an object');
150 } return it;
151};
152
153var nativeDefineProperty = Object.defineProperty;
154
155// `Object.defineProperty` method
156// https://tc39.github.io/ecma262/#sec-object.defineproperty
157var f$2 = descriptors ? nativeDefineProperty : function defineProperty(O, P, Attributes) {
158 anObject(O);
159 P = toPrimitive(P, true);
160 anObject(Attributes);
161 if (ie8DomDefine) try {
162 return nativeDefineProperty(O, P, Attributes);
163 } catch (error) { /* empty */ }
164 if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported');
165 if ('value' in Attributes) O[P] = Attributes.value;
166 return O;
167};
168
169var objectDefineProperty = {
170 f: f$2
171};
172
173var createNonEnumerableProperty = descriptors ? function (object, key, value) {
174 return objectDefineProperty.f(object, key, createPropertyDescriptor(1, value));
175} : function (object, key, value) {
176 object[key] = value;
177 return object;
178};
179
180var setGlobal = function (key, value) {
181 try {
182 createNonEnumerableProperty(global_1, key, value);
183 } catch (error) {
184 global_1[key] = value;
185 } return value;
186};
187
188var SHARED = '__core-js_shared__';
189var store = global_1[SHARED] || setGlobal(SHARED, {});
190
191var sharedStore = store;
192
193var functionToString = Function.toString;
194
195// this helper broken in `3.4.1-3.4.4`, so we can't use `shared` helper
196if (typeof sharedStore.inspectSource != 'function') {
197 sharedStore.inspectSource = function (it) {
198 return functionToString.call(it);
199 };
200}
201
202var inspectSource = sharedStore.inspectSource;
203
204var WeakMap = global_1.WeakMap;
205
206var nativeWeakMap = typeof WeakMap === 'function' && /native code/.test(inspectSource(WeakMap));
207
208var shared = createCommonjsModule(function (module) {
209(module.exports = function (key, value) {
210 return sharedStore[key] || (sharedStore[key] = value !== undefined ? value : {});
211})('versions', []).push({
212 version: '3.6.0',
213 mode: 'global',
214 copyright: '© 2019 Denis Pushkarev (zloirock.ru)'
215});
216});
217
218var id = 0;
219var postfix = Math.random();
220
221var uid = function (key) {
222 return 'Symbol(' + String(key === undefined ? '' : key) + ')_' + (++id + postfix).toString(36);
223};
224
225var keys = shared('keys');
226
227var sharedKey = function (key) {
228 return keys[key] || (keys[key] = uid(key));
229};
230
231var hiddenKeys = {};
232
233var WeakMap$1 = global_1.WeakMap;
234var set, get, has$1;
235
236var enforce = function (it) {
237 return has$1(it) ? get(it) : set(it, {});
238};
239
240var getterFor = function (TYPE) {
241 return function (it) {
242 var state;
243 if (!isObject(it) || (state = get(it)).type !== TYPE) {
244 throw TypeError('Incompatible receiver, ' + TYPE + ' required');
245 } return state;
246 };
247};
248
249if (nativeWeakMap) {
250 var store$1 = new WeakMap$1();
251 var wmget = store$1.get;
252 var wmhas = store$1.has;
253 var wmset = store$1.set;
254 set = function (it, metadata) {
255 wmset.call(store$1, it, metadata);
256 return metadata;
257 };
258 get = function (it) {
259 return wmget.call(store$1, it) || {};
260 };
261 has$1 = function (it) {
262 return wmhas.call(store$1, it);
263 };
264} else {
265 var STATE = sharedKey('state');
266 hiddenKeys[STATE] = true;
267 set = function (it, metadata) {
268 createNonEnumerableProperty(it, STATE, metadata);
269 return metadata;
270 };
271 get = function (it) {
272 return has(it, STATE) ? it[STATE] : {};
273 };
274 has$1 = function (it) {
275 return has(it, STATE);
276 };
277}
278
279var internalState = {
280 set: set,
281 get: get,
282 has: has$1,
283 enforce: enforce,
284 getterFor: getterFor
285};
286
287var redefine = createCommonjsModule(function (module) {
288var getInternalState = internalState.get;
289var enforceInternalState = internalState.enforce;
290var TEMPLATE = String(String).split('String');
291
292(module.exports = function (O, key, value, options) {
293 var unsafe = options ? !!options.unsafe : false;
294 var simple = options ? !!options.enumerable : false;
295 var noTargetGet = options ? !!options.noTargetGet : false;
296 if (typeof value == 'function') {
297 if (typeof key == 'string' && !has(value, 'name')) createNonEnumerableProperty(value, 'name', key);
298 enforceInternalState(value).source = TEMPLATE.join(typeof key == 'string' ? key : '');
299 }
300 if (O === global_1) {
301 if (simple) O[key] = value;
302 else setGlobal(key, value);
303 return;
304 } else if (!unsafe) {
305 delete O[key];
306 } else if (!noTargetGet && O[key]) {
307 simple = true;
308 }
309 if (simple) O[key] = value;
310 else createNonEnumerableProperty(O, key, value);
311// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
312})(Function.prototype, 'toString', function toString() {
313 return typeof this == 'function' && getInternalState(this).source || inspectSource(this);
314});
315});
316
317var path = global_1;
318
319var aFunction = function (variable) {
320 return typeof variable == 'function' ? variable : undefined;
321};
322
323var getBuiltIn = function (namespace, method) {
324 return arguments.length < 2 ? aFunction(path[namespace]) || aFunction(global_1[namespace])
325 : path[namespace] && path[namespace][method] || global_1[namespace] && global_1[namespace][method];
326};
327
328var ceil = Math.ceil;
329var floor = Math.floor;
330
331// `ToInteger` abstract operation
332// https://tc39.github.io/ecma262/#sec-tointeger
333var toInteger = function (argument) {
334 return isNaN(argument = +argument) ? 0 : (argument > 0 ? floor : ceil)(argument);
335};
336
337var min = Math.min;
338
339// `ToLength` abstract operation
340// https://tc39.github.io/ecma262/#sec-tolength
341var toLength = function (argument) {
342 return argument > 0 ? min(toInteger(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
343};
344
345var max = Math.max;
346var min$1 = Math.min;
347
348// Helper for a popular repeating case of the spec:
349// Let integer be ? ToInteger(index).
350// If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
351var toAbsoluteIndex = function (index, length) {
352 var integer = toInteger(index);
353 return integer < 0 ? max(integer + length, 0) : min$1(integer, length);
354};
355
356// `Array.prototype.{ indexOf, includes }` methods implementation
357var createMethod = function (IS_INCLUDES) {
358 return function ($this, el, fromIndex) {
359 var O = toIndexedObject($this);
360 var length = toLength(O.length);
361 var index = toAbsoluteIndex(fromIndex, length);
362 var value;
363 // Array#includes uses SameValueZero equality algorithm
364 // eslint-disable-next-line no-self-compare
365 if (IS_INCLUDES && el != el) while (length > index) {
366 value = O[index++];
367 // eslint-disable-next-line no-self-compare
368 if (value != value) return true;
369 // Array#indexOf ignores holes, Array#includes - not
370 } else for (;length > index; index++) {
371 if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
372 } return !IS_INCLUDES && -1;
373 };
374};
375
376var arrayIncludes = {
377 // `Array.prototype.includes` method
378 // https://tc39.github.io/ecma262/#sec-array.prototype.includes
379 includes: createMethod(true),
380 // `Array.prototype.indexOf` method
381 // https://tc39.github.io/ecma262/#sec-array.prototype.indexof
382 indexOf: createMethod(false)
383};
384
385var indexOf = arrayIncludes.indexOf;
386
387
388var objectKeysInternal = function (object, names) {
389 var O = toIndexedObject(object);
390 var i = 0;
391 var result = [];
392 var key;
393 for (key in O) !has(hiddenKeys, key) && has(O, key) && result.push(key);
394 // Don't enum bug & hidden keys
395 while (names.length > i) if (has(O, key = names[i++])) {
396 ~indexOf(result, key) || result.push(key);
397 }
398 return result;
399};
400
401// IE8- don't enum bug keys
402var enumBugKeys = [
403 'constructor',
404 'hasOwnProperty',
405 'isPrototypeOf',
406 'propertyIsEnumerable',
407 'toLocaleString',
408 'toString',
409 'valueOf'
410];
411
412var hiddenKeys$1 = enumBugKeys.concat('length', 'prototype');
413
414// `Object.getOwnPropertyNames` method
415// https://tc39.github.io/ecma262/#sec-object.getownpropertynames
416var f$3 = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
417 return objectKeysInternal(O, hiddenKeys$1);
418};
419
420var objectGetOwnPropertyNames = {
421 f: f$3
422};
423
424var f$4 = Object.getOwnPropertySymbols;
425
426var objectGetOwnPropertySymbols = {
427 f: f$4
428};
429
430// all object keys, includes non-enumerable and symbols
431var ownKeys = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {
432 var keys = objectGetOwnPropertyNames.f(anObject(it));
433 var getOwnPropertySymbols = objectGetOwnPropertySymbols.f;
434 return getOwnPropertySymbols ? keys.concat(getOwnPropertySymbols(it)) : keys;
435};
436
437var copyConstructorProperties = function (target, source) {
438 var keys = ownKeys(source);
439 var defineProperty = objectDefineProperty.f;
440 var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
441 for (var i = 0; i < keys.length; i++) {
442 var key = keys[i];
443 if (!has(target, key)) defineProperty(target, key, getOwnPropertyDescriptor(source, key));
444 }
445};
446
447var replacement = /#|\.prototype\./;
448
449var isForced = function (feature, detection) {
450 var value = data[normalize(feature)];
451 return value == POLYFILL ? true
452 : value == NATIVE ? false
453 : typeof detection == 'function' ? fails(detection)
454 : !!detection;
455};
456
457var normalize = isForced.normalize = function (string) {
458 return String(string).replace(replacement, '.').toLowerCase();
459};
460
461var data = isForced.data = {};
462var NATIVE = isForced.NATIVE = 'N';
463var POLYFILL = isForced.POLYFILL = 'P';
464
465var isForced_1 = isForced;
466
467var getOwnPropertyDescriptor$1 = objectGetOwnPropertyDescriptor.f;
468
469
470
471
472
473
474/*
475 options.target - name of the target object
476 options.global - target is the global object
477 options.stat - export as static methods of target
478 options.proto - export as prototype methods of target
479 options.real - real prototype method for the `pure` version
480 options.forced - export even if the native feature is available
481 options.bind - bind methods to the target, required for the `pure` version
482 options.wrap - wrap constructors to preventing global pollution, required for the `pure` version
483 options.unsafe - use the simple assignment of property instead of delete + defineProperty
484 options.sham - add a flag to not completely full polyfills
485 options.enumerable - export as enumerable property
486 options.noTargetGet - prevent calling a getter on target
487*/
488var _export = function (options, source) {
489 var TARGET = options.target;
490 var GLOBAL = options.global;
491 var STATIC = options.stat;
492 var FORCED, target, key, targetProperty, sourceProperty, descriptor;
493 if (GLOBAL) {
494 target = global_1;
495 } else if (STATIC) {
496 target = global_1[TARGET] || setGlobal(TARGET, {});
497 } else {
498 target = (global_1[TARGET] || {}).prototype;
499 }
500 if (target) for (key in source) {
501 sourceProperty = source[key];
502 if (options.noTargetGet) {
503 descriptor = getOwnPropertyDescriptor$1(target, key);
504 targetProperty = descriptor && descriptor.value;
505 } else targetProperty = target[key];
506 FORCED = isForced_1(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
507 // contained in target
508 if (!FORCED && targetProperty !== undefined) {
509 if (typeof sourceProperty === typeof targetProperty) continue;
510 copyConstructorProperties(sourceProperty, targetProperty);
511 }
512 // add a flag to not completely full polyfills
513 if (options.sham || (targetProperty && targetProperty.sham)) {
514 createNonEnumerableProperty(sourceProperty, 'sham', true);
515 }
516 // extend global
517 redefine(target, key, sourceProperty, options);
518 }
519};
520
521var nativeSymbol = !!Object.getOwnPropertySymbols && !fails(function () {
522 // Chrome 38 Symbol has incorrect toString conversion
523 // eslint-disable-next-line no-undef
524 return !String(Symbol());
525});
526
527var useSymbolAsUid = nativeSymbol
528 // eslint-disable-next-line no-undef
529 && !Symbol.sham
530 // eslint-disable-next-line no-undef
531 && typeof Symbol() == 'symbol';
532
533// `IsArray` abstract operation
534// https://tc39.github.io/ecma262/#sec-isarray
535var isArray = Array.isArray || function isArray(arg) {
536 return classofRaw(arg) == 'Array';
537};
538
539// `ToObject` abstract operation
540// https://tc39.github.io/ecma262/#sec-toobject
541var toObject = function (argument) {
542 return Object(requireObjectCoercible(argument));
543};
544
545// `Object.keys` method
546// https://tc39.github.io/ecma262/#sec-object.keys
547var objectKeys = Object.keys || function keys(O) {
548 return objectKeysInternal(O, enumBugKeys);
549};
550
551// `Object.defineProperties` method
552// https://tc39.github.io/ecma262/#sec-object.defineproperties
553var objectDefineProperties = descriptors ? Object.defineProperties : function defineProperties(O, Properties) {
554 anObject(O);
555 var keys = objectKeys(Properties);
556 var length = keys.length;
557 var index = 0;
558 var key;
559 while (length > index) objectDefineProperty.f(O, key = keys[index++], Properties[key]);
560 return O;
561};
562
563var html = getBuiltIn('document', 'documentElement');
564
565var GT = '>';
566var LT = '<';
567var PROTOTYPE = 'prototype';
568var SCRIPT = 'script';
569var IE_PROTO = sharedKey('IE_PROTO');
570
571var EmptyConstructor = function () { /* empty */ };
572
573var scriptTag = function (content) {
574 return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;
575};
576
577// Create object with fake `null` prototype: use ActiveX Object with cleared prototype
578var NullProtoObjectViaActiveX = function (activeXDocument) {
579 activeXDocument.write(scriptTag(''));
580 activeXDocument.close();
581 var temp = activeXDocument.parentWindow.Object;
582 activeXDocument = null; // avoid memory leak
583 return temp;
584};
585
586// Create object with fake `null` prototype: use iframe Object with cleared prototype
587var NullProtoObjectViaIFrame = function () {
588 // Thrash, waste and sodomy: IE GC bug
589 var iframe = documentCreateElement('iframe');
590 var JS = 'java' + SCRIPT + ':';
591 var iframeDocument;
592 iframe.style.display = 'none';
593 html.appendChild(iframe);
594 // https://github.com/zloirock/core-js/issues/475
595 iframe.src = String(JS);
596 iframeDocument = iframe.contentWindow.document;
597 iframeDocument.open();
598 iframeDocument.write(scriptTag('document.F=Object'));
599 iframeDocument.close();
600 return iframeDocument.F;
601};
602
603// Check for document.domain and active x support
604// No need to use active x approach when document.domain is not set
605// see https://github.com/es-shims/es5-shim/issues/150
606// variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346
607// avoid IE GC bug
608var activeXDocument;
609var NullProtoObject = function () {
610 try {
611 /* global ActiveXObject */
612 activeXDocument = document.domain && new ActiveXObject('htmlfile');
613 } catch (error) { /* ignore */ }
614 NullProtoObject = activeXDocument ? NullProtoObjectViaActiveX(activeXDocument) : NullProtoObjectViaIFrame();
615 var length = enumBugKeys.length;
616 while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]];
617 return NullProtoObject();
618};
619
620hiddenKeys[IE_PROTO] = true;
621
622// `Object.create` method
623// https://tc39.github.io/ecma262/#sec-object.create
624var objectCreate = Object.create || function create(O, Properties) {
625 var result;
626 if (O !== null) {
627 EmptyConstructor[PROTOTYPE] = anObject(O);
628 result = new EmptyConstructor();
629 EmptyConstructor[PROTOTYPE] = null;
630 // add "__proto__" for Object.getPrototypeOf polyfill
631 result[IE_PROTO] = O;
632 } else result = NullProtoObject();
633 return Properties === undefined ? result : objectDefineProperties(result, Properties);
634};
635
636var nativeGetOwnPropertyNames = objectGetOwnPropertyNames.f;
637
638var toString$1 = {}.toString;
639
640var windowNames = typeof window == 'object' && window && Object.getOwnPropertyNames
641 ? Object.getOwnPropertyNames(window) : [];
642
643var getWindowNames = function (it) {
644 try {
645 return nativeGetOwnPropertyNames(it);
646 } catch (error) {
647 return windowNames.slice();
648 }
649};
650
651// fallback for IE11 buggy Object.getOwnPropertyNames with iframe and window
652var f$5 = function getOwnPropertyNames(it) {
653 return windowNames && toString$1.call(it) == '[object Window]'
654 ? getWindowNames(it)
655 : nativeGetOwnPropertyNames(toIndexedObject(it));
656};
657
658var objectGetOwnPropertyNamesExternal = {
659 f: f$5
660};
661
662var WellKnownSymbolsStore = shared('wks');
663var Symbol$1 = global_1.Symbol;
664var createWellKnownSymbol = useSymbolAsUid ? Symbol$1 : uid;
665
666var wellKnownSymbol = function (name) {
667 if (!has(WellKnownSymbolsStore, name)) {
668 if (nativeSymbol && has(Symbol$1, name)) WellKnownSymbolsStore[name] = Symbol$1[name];
669 else WellKnownSymbolsStore[name] = createWellKnownSymbol('Symbol.' + name);
670 } return WellKnownSymbolsStore[name];
671};
672
673var f$6 = wellKnownSymbol;
674
675var wrappedWellKnownSymbol = {
676 f: f$6
677};
678
679var defineProperty = objectDefineProperty.f;
680
681var defineWellKnownSymbol = function (NAME) {
682 var Symbol = path.Symbol || (path.Symbol = {});
683 if (!has(Symbol, NAME)) defineProperty(Symbol, NAME, {
684 value: wrappedWellKnownSymbol.f(NAME)
685 });
686};
687
688var defineProperty$1 = objectDefineProperty.f;
689
690
691
692var TO_STRING_TAG = wellKnownSymbol('toStringTag');
693
694var setToStringTag = function (it, TAG, STATIC) {
695 if (it && !has(it = STATIC ? it : it.prototype, TO_STRING_TAG)) {
696 defineProperty$1(it, TO_STRING_TAG, { configurable: true, value: TAG });
697 }
698};
699
700var aFunction$1 = function (it) {
701 if (typeof it != 'function') {
702 throw TypeError(String(it) + ' is not a function');
703 } return it;
704};
705
706// optional / simple context binding
707var bindContext = function (fn, that, length) {
708 aFunction$1(fn);
709 if (that === undefined) return fn;
710 switch (length) {
711 case 0: return function () {
712 return fn.call(that);
713 };
714 case 1: return function (a) {
715 return fn.call(that, a);
716 };
717 case 2: return function (a, b) {
718 return fn.call(that, a, b);
719 };
720 case 3: return function (a, b, c) {
721 return fn.call(that, a, b, c);
722 };
723 }
724 return function (/* ...args */) {
725 return fn.apply(that, arguments);
726 };
727};
728
729var SPECIES = wellKnownSymbol('species');
730
731// `ArraySpeciesCreate` abstract operation
732// https://tc39.github.io/ecma262/#sec-arrayspeciescreate
733var arraySpeciesCreate = function (originalArray, length) {
734 var C;
735 if (isArray(originalArray)) {
736 C = originalArray.constructor;
737 // cross-realm fallback
738 if (typeof C == 'function' && (C === Array || isArray(C.prototype))) C = undefined;
739 else if (isObject(C)) {
740 C = C[SPECIES];
741 if (C === null) C = undefined;
742 }
743 } return new (C === undefined ? Array : C)(length === 0 ? 0 : length);
744};
745
746var push = [].push;
747
748// `Array.prototype.{ forEach, map, filter, some, every, find, findIndex }` methods implementation
749var createMethod$1 = function (TYPE) {
750 var IS_MAP = TYPE == 1;
751 var IS_FILTER = TYPE == 2;
752 var IS_SOME = TYPE == 3;
753 var IS_EVERY = TYPE == 4;
754 var IS_FIND_INDEX = TYPE == 6;
755 var NO_HOLES = TYPE == 5 || IS_FIND_INDEX;
756 return function ($this, callbackfn, that, specificCreate) {
757 var O = toObject($this);
758 var self = indexedObject(O);
759 var boundFunction = bindContext(callbackfn, that, 3);
760 var length = toLength(self.length);
761 var index = 0;
762 var create = specificCreate || arraySpeciesCreate;
763 var target = IS_MAP ? create($this, length) : IS_FILTER ? create($this, 0) : undefined;
764 var value, result;
765 for (;length > index; index++) if (NO_HOLES || index in self) {
766 value = self[index];
767 result = boundFunction(value, index, O);
768 if (TYPE) {
769 if (IS_MAP) target[index] = result; // map
770 else if (result) switch (TYPE) {
771 case 3: return true; // some
772 case 5: return value; // find
773 case 6: return index; // findIndex
774 case 2: push.call(target, value); // filter
775 } else if (IS_EVERY) return false; // every
776 }
777 }
778 return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : target;
779 };
780};
781
782var arrayIteration = {
783 // `Array.prototype.forEach` method
784 // https://tc39.github.io/ecma262/#sec-array.prototype.foreach
785 forEach: createMethod$1(0),
786 // `Array.prototype.map` method
787 // https://tc39.github.io/ecma262/#sec-array.prototype.map
788 map: createMethod$1(1),
789 // `Array.prototype.filter` method
790 // https://tc39.github.io/ecma262/#sec-array.prototype.filter
791 filter: createMethod$1(2),
792 // `Array.prototype.some` method
793 // https://tc39.github.io/ecma262/#sec-array.prototype.some
794 some: createMethod$1(3),
795 // `Array.prototype.every` method
796 // https://tc39.github.io/ecma262/#sec-array.prototype.every
797 every: createMethod$1(4),
798 // `Array.prototype.find` method
799 // https://tc39.github.io/ecma262/#sec-array.prototype.find
800 find: createMethod$1(5),
801 // `Array.prototype.findIndex` method
802 // https://tc39.github.io/ecma262/#sec-array.prototype.findIndex
803 findIndex: createMethod$1(6)
804};
805
806var $forEach = arrayIteration.forEach;
807
808var HIDDEN = sharedKey('hidden');
809var SYMBOL = 'Symbol';
810var PROTOTYPE$1 = 'prototype';
811var TO_PRIMITIVE = wellKnownSymbol('toPrimitive');
812var setInternalState = internalState.set;
813var getInternalState = internalState.getterFor(SYMBOL);
814var ObjectPrototype = Object[PROTOTYPE$1];
815var $Symbol = global_1.Symbol;
816var $stringify = getBuiltIn('JSON', 'stringify');
817var nativeGetOwnPropertyDescriptor$1 = objectGetOwnPropertyDescriptor.f;
818var nativeDefineProperty$1 = objectDefineProperty.f;
819var nativeGetOwnPropertyNames$1 = objectGetOwnPropertyNamesExternal.f;
820var nativePropertyIsEnumerable$1 = objectPropertyIsEnumerable.f;
821var AllSymbols = shared('symbols');
822var ObjectPrototypeSymbols = shared('op-symbols');
823var StringToSymbolRegistry = shared('string-to-symbol-registry');
824var SymbolToStringRegistry = shared('symbol-to-string-registry');
825var WellKnownSymbolsStore$1 = shared('wks');
826var QObject = global_1.QObject;
827// Don't use setters in Qt Script, https://github.com/zloirock/core-js/issues/173
828var USE_SETTER = !QObject || !QObject[PROTOTYPE$1] || !QObject[PROTOTYPE$1].findChild;
829
830// fallback for old Android, https://code.google.com/p/v8/issues/detail?id=687
831var setSymbolDescriptor = descriptors && fails(function () {
832 return objectCreate(nativeDefineProperty$1({}, 'a', {
833 get: function () { return nativeDefineProperty$1(this, 'a', { value: 7 }).a; }
834 })).a != 7;
835}) ? function (O, P, Attributes) {
836 var ObjectPrototypeDescriptor = nativeGetOwnPropertyDescriptor$1(ObjectPrototype, P);
837 if (ObjectPrototypeDescriptor) delete ObjectPrototype[P];
838 nativeDefineProperty$1(O, P, Attributes);
839 if (ObjectPrototypeDescriptor && O !== ObjectPrototype) {
840 nativeDefineProperty$1(ObjectPrototype, P, ObjectPrototypeDescriptor);
841 }
842} : nativeDefineProperty$1;
843
844var wrap = function (tag, description) {
845 var symbol = AllSymbols[tag] = objectCreate($Symbol[PROTOTYPE$1]);
846 setInternalState(symbol, {
847 type: SYMBOL,
848 tag: tag,
849 description: description
850 });
851 if (!descriptors) symbol.description = description;
852 return symbol;
853};
854
855var isSymbol = nativeSymbol && typeof $Symbol.iterator == 'symbol' ? function (it) {
856 return typeof it == 'symbol';
857} : function (it) {
858 return Object(it) instanceof $Symbol;
859};
860
861var $defineProperty = function defineProperty(O, P, Attributes) {
862 if (O === ObjectPrototype) $defineProperty(ObjectPrototypeSymbols, P, Attributes);
863 anObject(O);
864 var key = toPrimitive(P, true);
865 anObject(Attributes);
866 if (has(AllSymbols, key)) {
867 if (!Attributes.enumerable) {
868 if (!has(O, HIDDEN)) nativeDefineProperty$1(O, HIDDEN, createPropertyDescriptor(1, {}));
869 O[HIDDEN][key] = true;
870 } else {
871 if (has(O, HIDDEN) && O[HIDDEN][key]) O[HIDDEN][key] = false;
872 Attributes = objectCreate(Attributes, { enumerable: createPropertyDescriptor(0, false) });
873 } return setSymbolDescriptor(O, key, Attributes);
874 } return nativeDefineProperty$1(O, key, Attributes);
875};
876
877var $defineProperties = function defineProperties(O, Properties) {
878 anObject(O);
879 var properties = toIndexedObject(Properties);
880 var keys = objectKeys(properties).concat($getOwnPropertySymbols(properties));
881 $forEach(keys, function (key) {
882 if (!descriptors || $propertyIsEnumerable.call(properties, key)) $defineProperty(O, key, properties[key]);
883 });
884 return O;
885};
886
887var $create = function create(O, Properties) {
888 return Properties === undefined ? objectCreate(O) : $defineProperties(objectCreate(O), Properties);
889};
890
891var $propertyIsEnumerable = function propertyIsEnumerable(V) {
892 var P = toPrimitive(V, true);
893 var enumerable = nativePropertyIsEnumerable$1.call(this, P);
894 if (this === ObjectPrototype && has(AllSymbols, P) && !has(ObjectPrototypeSymbols, P)) return false;
895 return enumerable || !has(this, P) || !has(AllSymbols, P) || has(this, HIDDEN) && this[HIDDEN][P] ? enumerable : true;
896};
897
898var $getOwnPropertyDescriptor = function getOwnPropertyDescriptor(O, P) {
899 var it = toIndexedObject(O);
900 var key = toPrimitive(P, true);
901 if (it === ObjectPrototype && has(AllSymbols, key) && !has(ObjectPrototypeSymbols, key)) return;
902 var descriptor = nativeGetOwnPropertyDescriptor$1(it, key);
903 if (descriptor && has(AllSymbols, key) && !(has(it, HIDDEN) && it[HIDDEN][key])) {
904 descriptor.enumerable = true;
905 }
906 return descriptor;
907};
908
909var $getOwnPropertyNames = function getOwnPropertyNames(O) {
910 var names = nativeGetOwnPropertyNames$1(toIndexedObject(O));
911 var result = [];
912 $forEach(names, function (key) {
913 if (!has(AllSymbols, key) && !has(hiddenKeys, key)) result.push(key);
914 });
915 return result;
916};
917
918var $getOwnPropertySymbols = function getOwnPropertySymbols(O) {
919 var IS_OBJECT_PROTOTYPE = O === ObjectPrototype;
920 var names = nativeGetOwnPropertyNames$1(IS_OBJECT_PROTOTYPE ? ObjectPrototypeSymbols : toIndexedObject(O));
921 var result = [];
922 $forEach(names, function (key) {
923 if (has(AllSymbols, key) && (!IS_OBJECT_PROTOTYPE || has(ObjectPrototype, key))) {
924 result.push(AllSymbols[key]);
925 }
926 });
927 return result;
928};
929
930// `Symbol` constructor
931// https://tc39.github.io/ecma262/#sec-symbol-constructor
932if (!nativeSymbol) {
933 $Symbol = function Symbol() {
934 if (this instanceof $Symbol) throw TypeError('Symbol is not a constructor');
935 var description = !arguments.length || arguments[0] === undefined ? undefined : String(arguments[0]);
936 var tag = uid(description);
937 var setter = function (value) {
938 if (this === ObjectPrototype) setter.call(ObjectPrototypeSymbols, value);
939 if (has(this, HIDDEN) && has(this[HIDDEN], tag)) this[HIDDEN][tag] = false;
940 setSymbolDescriptor(this, tag, createPropertyDescriptor(1, value));
941 };
942 if (descriptors && USE_SETTER) setSymbolDescriptor(ObjectPrototype, tag, { configurable: true, set: setter });
943 return wrap(tag, description);
944 };
945
946 redefine($Symbol[PROTOTYPE$1], 'toString', function toString() {
947 return getInternalState(this).tag;
948 });
949
950 objectPropertyIsEnumerable.f = $propertyIsEnumerable;
951 objectDefineProperty.f = $defineProperty;
952 objectGetOwnPropertyDescriptor.f = $getOwnPropertyDescriptor;
953 objectGetOwnPropertyNames.f = objectGetOwnPropertyNamesExternal.f = $getOwnPropertyNames;
954 objectGetOwnPropertySymbols.f = $getOwnPropertySymbols;
955
956 if (descriptors) {
957 // https://github.com/tc39/proposal-Symbol-description
958 nativeDefineProperty$1($Symbol[PROTOTYPE$1], 'description', {
959 configurable: true,
960 get: function description() {
961 return getInternalState(this).description;
962 }
963 });
964 {
965 redefine(ObjectPrototype, 'propertyIsEnumerable', $propertyIsEnumerable, { unsafe: true });
966 }
967 }
968}
969
970if (!useSymbolAsUid) {
971 wrappedWellKnownSymbol.f = function (name) {
972 return wrap(wellKnownSymbol(name), name);
973 };
974}
975
976_export({ global: true, wrap: true, forced: !nativeSymbol, sham: !nativeSymbol }, {
977 Symbol: $Symbol
978});
979
980$forEach(objectKeys(WellKnownSymbolsStore$1), function (name) {
981 defineWellKnownSymbol(name);
982});
983
984_export({ target: SYMBOL, stat: true, forced: !nativeSymbol }, {
985 // `Symbol.for` method
986 // https://tc39.github.io/ecma262/#sec-symbol.for
987 'for': function (key) {
988 var string = String(key);
989 if (has(StringToSymbolRegistry, string)) return StringToSymbolRegistry[string];
990 var symbol = $Symbol(string);
991 StringToSymbolRegistry[string] = symbol;
992 SymbolToStringRegistry[symbol] = string;
993 return symbol;
994 },
995 // `Symbol.keyFor` method
996 // https://tc39.github.io/ecma262/#sec-symbol.keyfor
997 keyFor: function keyFor(sym) {
998 if (!isSymbol(sym)) throw TypeError(sym + ' is not a symbol');
999 if (has(SymbolToStringRegistry, sym)) return SymbolToStringRegistry[sym];
1000 },
1001 useSetter: function () { USE_SETTER = true; },
1002 useSimple: function () { USE_SETTER = false; }
1003});
1004
1005_export({ target: 'Object', stat: true, forced: !nativeSymbol, sham: !descriptors }, {
1006 // `Object.create` method
1007 // https://tc39.github.io/ecma262/#sec-object.create
1008 create: $create,
1009 // `Object.defineProperty` method
1010 // https://tc39.github.io/ecma262/#sec-object.defineproperty
1011 defineProperty: $defineProperty,
1012 // `Object.defineProperties` method
1013 // https://tc39.github.io/ecma262/#sec-object.defineproperties
1014 defineProperties: $defineProperties,
1015 // `Object.getOwnPropertyDescriptor` method
1016 // https://tc39.github.io/ecma262/#sec-object.getownpropertydescriptors
1017 getOwnPropertyDescriptor: $getOwnPropertyDescriptor
1018});
1019
1020_export({ target: 'Object', stat: true, forced: !nativeSymbol }, {
1021 // `Object.getOwnPropertyNames` method
1022 // https://tc39.github.io/ecma262/#sec-object.getownpropertynames
1023 getOwnPropertyNames: $getOwnPropertyNames,
1024 // `Object.getOwnPropertySymbols` method
1025 // https://tc39.github.io/ecma262/#sec-object.getownpropertysymbols
1026 getOwnPropertySymbols: $getOwnPropertySymbols
1027});
1028
1029// Chrome 38 and 39 `Object.getOwnPropertySymbols` fails on primitives
1030// https://bugs.chromium.org/p/v8/issues/detail?id=3443
1031_export({ target: 'Object', stat: true, forced: fails(function () { objectGetOwnPropertySymbols.f(1); }) }, {
1032 getOwnPropertySymbols: function getOwnPropertySymbols(it) {
1033 return objectGetOwnPropertySymbols.f(toObject(it));
1034 }
1035});
1036
1037// `JSON.stringify` method behavior with symbols
1038// https://tc39.github.io/ecma262/#sec-json.stringify
1039if ($stringify) {
1040 var FORCED_JSON_STRINGIFY = !nativeSymbol || fails(function () {
1041 var symbol = $Symbol();
1042 // MS Edge converts symbol values to JSON as {}
1043 return $stringify([symbol]) != '[null]'
1044 // WebKit converts symbol values to JSON as null
1045 || $stringify({ a: symbol }) != '{}'
1046 // V8 throws on boxed symbols
1047 || $stringify(Object(symbol)) != '{}';
1048 });
1049
1050 _export({ target: 'JSON', stat: true, forced: FORCED_JSON_STRINGIFY }, {
1051 // eslint-disable-next-line no-unused-vars
1052 stringify: function stringify(it, replacer, space) {
1053 var args = [it];
1054 var index = 1;
1055 var $replacer;
1056 while (arguments.length > index) args.push(arguments[index++]);
1057 $replacer = replacer;
1058 if (!isObject(replacer) && it === undefined || isSymbol(it)) return; // IE8 returns string on undefined
1059 if (!isArray(replacer)) replacer = function (key, value) {
1060 if (typeof $replacer == 'function') value = $replacer.call(this, key, value);
1061 if (!isSymbol(value)) return value;
1062 };
1063 args[1] = replacer;
1064 return $stringify.apply(null, args);
1065 }
1066 });
1067}
1068
1069// `Symbol.prototype[@@toPrimitive]` method
1070// https://tc39.github.io/ecma262/#sec-symbol.prototype-@@toprimitive
1071if (!$Symbol[PROTOTYPE$1][TO_PRIMITIVE]) {
1072 createNonEnumerableProperty($Symbol[PROTOTYPE$1], TO_PRIMITIVE, $Symbol[PROTOTYPE$1].valueOf);
1073}
1074// `Symbol.prototype[@@toStringTag]` property
1075// https://tc39.github.io/ecma262/#sec-symbol.prototype-@@tostringtag
1076setToStringTag($Symbol, SYMBOL);
1077
1078hiddenKeys[HIDDEN] = true;
1079
1080var defineProperty$2 = objectDefineProperty.f;
1081
1082
1083var NativeSymbol = global_1.Symbol;
1084
1085if (descriptors && typeof NativeSymbol == 'function' && (!('description' in NativeSymbol.prototype) ||
1086 // Safari 12 bug
1087 NativeSymbol().description !== undefined
1088)) {
1089 var EmptyStringDescriptionStore = {};
1090 // wrap Symbol constructor for correct work with undefined description
1091 var SymbolWrapper = function Symbol() {
1092 var description = arguments.length < 1 || arguments[0] === undefined ? undefined : String(arguments[0]);
1093 var result = this instanceof SymbolWrapper
1094 ? new NativeSymbol(description)
1095 // in Edge 13, String(Symbol(undefined)) === 'Symbol(undefined)'
1096 : description === undefined ? NativeSymbol() : NativeSymbol(description);
1097 if (description === '') EmptyStringDescriptionStore[result] = true;
1098 return result;
1099 };
1100 copyConstructorProperties(SymbolWrapper, NativeSymbol);
1101 var symbolPrototype = SymbolWrapper.prototype = NativeSymbol.prototype;
1102 symbolPrototype.constructor = SymbolWrapper;
1103
1104 var symbolToString = symbolPrototype.toString;
1105 var native = String(NativeSymbol('test')) == 'Symbol(test)';
1106 var regexp = /^Symbol\((.*)\)[^)]+$/;
1107 defineProperty$2(symbolPrototype, 'description', {
1108 configurable: true,
1109 get: function description() {
1110 var symbol = isObject(this) ? this.valueOf() : this;
1111 var string = symbolToString.call(symbol);
1112 if (has(EmptyStringDescriptionStore, symbol)) return '';
1113 var desc = native ? string.slice(7, -1) : string.replace(regexp, '$1');
1114 return desc === '' ? undefined : desc;
1115 }
1116 });
1117
1118 _export({ global: true, forced: true }, {
1119 Symbol: SymbolWrapper
1120 });
1121}
1122
1123// `Symbol.iterator` well-known symbol
1124// https://tc39.github.io/ecma262/#sec-symbol.iterator
1125defineWellKnownSymbol('iterator');
1126
1127var createProperty = function (object, key, value) {
1128 var propertyKey = toPrimitive(key);
1129 if (propertyKey in object) objectDefineProperty.f(object, propertyKey, createPropertyDescriptor(0, value));
1130 else object[propertyKey] = value;
1131};
1132
1133var userAgent = getBuiltIn('navigator', 'userAgent') || '';
1134
1135var process = global_1.process;
1136var versions = process && process.versions;
1137var v8 = versions && versions.v8;
1138var match, version;
1139
1140if (v8) {
1141 match = v8.split('.');
1142 version = match[0] + match[1];
1143} else if (userAgent) {
1144 match = userAgent.match(/Edge\/(\d+)/);
1145 if (!match || match[1] >= 74) {
1146 match = userAgent.match(/Chrome\/(\d+)/);
1147 if (match) version = match[1];
1148 }
1149}
1150
1151var v8Version = version && +version;
1152
1153var SPECIES$1 = wellKnownSymbol('species');
1154
1155var arrayMethodHasSpeciesSupport = function (METHOD_NAME) {
1156 // We can't use this feature detection in V8 since it causes
1157 // deoptimization and serious performance degradation
1158 // https://github.com/zloirock/core-js/issues/677
1159 return v8Version >= 51 || !fails(function () {
1160 var array = [];
1161 var constructor = array.constructor = {};
1162 constructor[SPECIES$1] = function () {
1163 return { foo: 1 };
1164 };
1165 return array[METHOD_NAME](Boolean).foo !== 1;
1166 });
1167};
1168
1169var IS_CONCAT_SPREADABLE = wellKnownSymbol('isConcatSpreadable');
1170var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF;
1171var MAXIMUM_ALLOWED_INDEX_EXCEEDED = 'Maximum allowed index exceeded';
1172
1173// We can't use this feature detection in V8 since it causes
1174// deoptimization and serious performance degradation
1175// https://github.com/zloirock/core-js/issues/679
1176var IS_CONCAT_SPREADABLE_SUPPORT = v8Version >= 51 || !fails(function () {
1177 var array = [];
1178 array[IS_CONCAT_SPREADABLE] = false;
1179 return array.concat()[0] !== array;
1180});
1181
1182var SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('concat');
1183
1184var isConcatSpreadable = function (O) {
1185 if (!isObject(O)) return false;
1186 var spreadable = O[IS_CONCAT_SPREADABLE];
1187 return spreadable !== undefined ? !!spreadable : isArray(O);
1188};
1189
1190var FORCED = !IS_CONCAT_SPREADABLE_SUPPORT || !SPECIES_SUPPORT;
1191
1192// `Array.prototype.concat` method
1193// https://tc39.github.io/ecma262/#sec-array.prototype.concat
1194// with adding support of @@isConcatSpreadable and @@species
1195_export({ target: 'Array', proto: true, forced: FORCED }, {
1196 concat: function concat(arg) { // eslint-disable-line no-unused-vars
1197 var O = toObject(this);
1198 var A = arraySpeciesCreate(O, 0);
1199 var n = 0;
1200 var i, k, length, len, E;
1201 for (i = -1, length = arguments.length; i < length; i++) {
1202 E = i === -1 ? O : arguments[i];
1203 if (isConcatSpreadable(E)) {
1204 len = toLength(E.length);
1205 if (n + len > MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED);
1206 for (k = 0; k < len; k++, n++) if (k in E) createProperty(A, n, E[k]);
1207 } else {
1208 if (n >= MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED);
1209 createProperty(A, n++, E);
1210 }
1211 }
1212 A.length = n;
1213 return A;
1214 }
1215});
1216
1217var UNSCOPABLES = wellKnownSymbol('unscopables');
1218var ArrayPrototype = Array.prototype;
1219
1220// Array.prototype[@@unscopables]
1221// https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables
1222if (ArrayPrototype[UNSCOPABLES] == undefined) {
1223 objectDefineProperty.f(ArrayPrototype, UNSCOPABLES, {
1224 configurable: true,
1225 value: objectCreate(null)
1226 });
1227}
1228
1229// add a key to Array.prototype[@@unscopables]
1230var addToUnscopables = function (key) {
1231 ArrayPrototype[UNSCOPABLES][key] = true;
1232};
1233
1234var correctPrototypeGetter = !fails(function () {
1235 function F() { /* empty */ }
1236 F.prototype.constructor = null;
1237 return Object.getPrototypeOf(new F()) !== F.prototype;
1238});
1239
1240var IE_PROTO$1 = sharedKey('IE_PROTO');
1241var ObjectPrototype$1 = Object.prototype;
1242
1243// `Object.getPrototypeOf` method
1244// https://tc39.github.io/ecma262/#sec-object.getprototypeof
1245var objectGetPrototypeOf = correctPrototypeGetter ? Object.getPrototypeOf : function (O) {
1246 O = toObject(O);
1247 if (has(O, IE_PROTO$1)) return O[IE_PROTO$1];
1248 if (typeof O.constructor == 'function' && O instanceof O.constructor) {
1249 return O.constructor.prototype;
1250 } return O instanceof Object ? ObjectPrototype$1 : null;
1251};
1252
1253var ITERATOR = wellKnownSymbol('iterator');
1254var BUGGY_SAFARI_ITERATORS = false;
1255
1256var returnThis = function () { return this; };
1257
1258// `%IteratorPrototype%` object
1259// https://tc39.github.io/ecma262/#sec-%iteratorprototype%-object
1260var IteratorPrototype, PrototypeOfArrayIteratorPrototype, arrayIterator;
1261
1262if ([].keys) {
1263 arrayIterator = [].keys();
1264 // Safari 8 has buggy iterators w/o `next`
1265 if (!('next' in arrayIterator)) BUGGY_SAFARI_ITERATORS = true;
1266 else {
1267 PrototypeOfArrayIteratorPrototype = objectGetPrototypeOf(objectGetPrototypeOf(arrayIterator));
1268 if (PrototypeOfArrayIteratorPrototype !== Object.prototype) IteratorPrototype = PrototypeOfArrayIteratorPrototype;
1269 }
1270}
1271
1272if (IteratorPrototype == undefined) IteratorPrototype = {};
1273
1274// 25.1.2.1.1 %IteratorPrototype%[@@iterator]()
1275if ( !has(IteratorPrototype, ITERATOR)) {
1276 createNonEnumerableProperty(IteratorPrototype, ITERATOR, returnThis);
1277}
1278
1279var iteratorsCore = {
1280 IteratorPrototype: IteratorPrototype,
1281 BUGGY_SAFARI_ITERATORS: BUGGY_SAFARI_ITERATORS
1282};
1283
1284var IteratorPrototype$1 = iteratorsCore.IteratorPrototype;
1285
1286var createIteratorConstructor = function (IteratorConstructor, NAME, next) {
1287 var TO_STRING_TAG = NAME + ' Iterator';
1288 IteratorConstructor.prototype = objectCreate(IteratorPrototype$1, { next: createPropertyDescriptor(1, next) });
1289 setToStringTag(IteratorConstructor, TO_STRING_TAG, false);
1290 return IteratorConstructor;
1291};
1292
1293var aPossiblePrototype = function (it) {
1294 if (!isObject(it) && it !== null) {
1295 throw TypeError("Can't set " + String(it) + ' as a prototype');
1296 } return it;
1297};
1298
1299// `Object.setPrototypeOf` method
1300// https://tc39.github.io/ecma262/#sec-object.setprototypeof
1301// Works with __proto__ only. Old v8 can't work with null proto objects.
1302/* eslint-disable no-proto */
1303var objectSetPrototypeOf = Object.setPrototypeOf || ('__proto__' in {} ? function () {
1304 var CORRECT_SETTER = false;
1305 var test = {};
1306 var setter;
1307 try {
1308 setter = Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set;
1309 setter.call(test, []);
1310 CORRECT_SETTER = test instanceof Array;
1311 } catch (error) { /* empty */ }
1312 return function setPrototypeOf(O, proto) {
1313 anObject(O);
1314 aPossiblePrototype(proto);
1315 if (CORRECT_SETTER) setter.call(O, proto);
1316 else O.__proto__ = proto;
1317 return O;
1318 };
1319}() : undefined);
1320
1321var IteratorPrototype$2 = iteratorsCore.IteratorPrototype;
1322var BUGGY_SAFARI_ITERATORS$1 = iteratorsCore.BUGGY_SAFARI_ITERATORS;
1323var ITERATOR$1 = wellKnownSymbol('iterator');
1324var KEYS = 'keys';
1325var VALUES = 'values';
1326var ENTRIES = 'entries';
1327
1328var returnThis$1 = function () { return this; };
1329
1330var defineIterator = function (Iterable, NAME, IteratorConstructor, next, DEFAULT, IS_SET, FORCED) {
1331 createIteratorConstructor(IteratorConstructor, NAME, next);
1332
1333 var getIterationMethod = function (KIND) {
1334 if (KIND === DEFAULT && defaultIterator) return defaultIterator;
1335 if (!BUGGY_SAFARI_ITERATORS$1 && KIND in IterablePrototype) return IterablePrototype[KIND];
1336 switch (KIND) {
1337 case KEYS: return function keys() { return new IteratorConstructor(this, KIND); };
1338 case VALUES: return function values() { return new IteratorConstructor(this, KIND); };
1339 case ENTRIES: return function entries() { return new IteratorConstructor(this, KIND); };
1340 } return function () { return new IteratorConstructor(this); };
1341 };
1342
1343 var TO_STRING_TAG = NAME + ' Iterator';
1344 var INCORRECT_VALUES_NAME = false;
1345 var IterablePrototype = Iterable.prototype;
1346 var nativeIterator = IterablePrototype[ITERATOR$1]
1347 || IterablePrototype['@@iterator']
1348 || DEFAULT && IterablePrototype[DEFAULT];
1349 var defaultIterator = !BUGGY_SAFARI_ITERATORS$1 && nativeIterator || getIterationMethod(DEFAULT);
1350 var anyNativeIterator = NAME == 'Array' ? IterablePrototype.entries || nativeIterator : nativeIterator;
1351 var CurrentIteratorPrototype, methods, KEY;
1352
1353 // fix native
1354 if (anyNativeIterator) {
1355 CurrentIteratorPrototype = objectGetPrototypeOf(anyNativeIterator.call(new Iterable()));
1356 if (IteratorPrototype$2 !== Object.prototype && CurrentIteratorPrototype.next) {
1357 if ( objectGetPrototypeOf(CurrentIteratorPrototype) !== IteratorPrototype$2) {
1358 if (objectSetPrototypeOf) {
1359 objectSetPrototypeOf(CurrentIteratorPrototype, IteratorPrototype$2);
1360 } else if (typeof CurrentIteratorPrototype[ITERATOR$1] != 'function') {
1361 createNonEnumerableProperty(CurrentIteratorPrototype, ITERATOR$1, returnThis$1);
1362 }
1363 }
1364 // Set @@toStringTag to native iterators
1365 setToStringTag(CurrentIteratorPrototype, TO_STRING_TAG, true);
1366 }
1367 }
1368
1369 // fix Array#{values, @@iterator}.name in V8 / FF
1370 if (DEFAULT == VALUES && nativeIterator && nativeIterator.name !== VALUES) {
1371 INCORRECT_VALUES_NAME = true;
1372 defaultIterator = function values() { return nativeIterator.call(this); };
1373 }
1374
1375 // define iterator
1376 if ( IterablePrototype[ITERATOR$1] !== defaultIterator) {
1377 createNonEnumerableProperty(IterablePrototype, ITERATOR$1, defaultIterator);
1378 }
1379
1380 // export additional methods
1381 if (DEFAULT) {
1382 methods = {
1383 values: getIterationMethod(VALUES),
1384 keys: IS_SET ? defaultIterator : getIterationMethod(KEYS),
1385 entries: getIterationMethod(ENTRIES)
1386 };
1387 if (FORCED) for (KEY in methods) {
1388 if (BUGGY_SAFARI_ITERATORS$1 || INCORRECT_VALUES_NAME || !(KEY in IterablePrototype)) {
1389 redefine(IterablePrototype, KEY, methods[KEY]);
1390 }
1391 } else _export({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS$1 || INCORRECT_VALUES_NAME }, methods);
1392 }
1393
1394 return methods;
1395};
1396
1397var ARRAY_ITERATOR = 'Array Iterator';
1398var setInternalState$1 = internalState.set;
1399var getInternalState$1 = internalState.getterFor(ARRAY_ITERATOR);
1400
1401// `Array.prototype.entries` method
1402// https://tc39.github.io/ecma262/#sec-array.prototype.entries
1403// `Array.prototype.keys` method
1404// https://tc39.github.io/ecma262/#sec-array.prototype.keys
1405// `Array.prototype.values` method
1406// https://tc39.github.io/ecma262/#sec-array.prototype.values
1407// `Array.prototype[@@iterator]` method
1408// https://tc39.github.io/ecma262/#sec-array.prototype-@@iterator
1409// `CreateArrayIterator` internal method
1410// https://tc39.github.io/ecma262/#sec-createarrayiterator
1411var es_array_iterator = defineIterator(Array, 'Array', function (iterated, kind) {
1412 setInternalState$1(this, {
1413 type: ARRAY_ITERATOR,
1414 target: toIndexedObject(iterated), // target
1415 index: 0, // next index
1416 kind: kind // kind
1417 });
1418// `%ArrayIteratorPrototype%.next` method
1419// https://tc39.github.io/ecma262/#sec-%arrayiteratorprototype%.next
1420}, function () {
1421 var state = getInternalState$1(this);
1422 var target = state.target;
1423 var kind = state.kind;
1424 var index = state.index++;
1425 if (!target || index >= target.length) {
1426 state.target = undefined;
1427 return { value: undefined, done: true };
1428 }
1429 if (kind == 'keys') return { value: index, done: false };
1430 if (kind == 'values') return { value: target[index], done: false };
1431 return { value: [index, target[index]], done: false };
1432}, 'values');
1433
1434// https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables
1435addToUnscopables('keys');
1436addToUnscopables('values');
1437addToUnscopables('entries');
1438
1439var TO_STRING_TAG$1 = wellKnownSymbol('toStringTag');
1440var test = {};
1441
1442test[TO_STRING_TAG$1] = 'z';
1443
1444var toStringTagSupport = String(test) === '[object z]';
1445
1446var TO_STRING_TAG$2 = wellKnownSymbol('toStringTag');
1447// ES3 wrong here
1448var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';
1449
1450// fallback for IE11 Script Access Denied error
1451var tryGet = function (it, key) {
1452 try {
1453 return it[key];
1454 } catch (error) { /* empty */ }
1455};
1456
1457// getting tag from ES6+ `Object.prototype.toString`
1458var classof = toStringTagSupport ? classofRaw : function (it) {
1459 var O, tag, result;
1460 return it === undefined ? 'Undefined' : it === null ? 'Null'
1461 // @@toStringTag case
1462 : typeof (tag = tryGet(O = Object(it), TO_STRING_TAG$2)) == 'string' ? tag
1463 // builtinTag case
1464 : CORRECT_ARGUMENTS ? classofRaw(O)
1465 // ES3 arguments fallback
1466 : (result = classofRaw(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : result;
1467};
1468
1469// `Object.prototype.toString` method implementation
1470// https://tc39.github.io/ecma262/#sec-object.prototype.tostring
1471var objectToString = toStringTagSupport ? {}.toString : function toString() {
1472 return '[object ' + classof(this) + ']';
1473};
1474
1475// `Object.prototype.toString` method
1476// https://tc39.github.io/ecma262/#sec-object.prototype.tostring
1477if (!toStringTagSupport) {
1478 redefine(Object.prototype, 'toString', objectToString, { unsafe: true });
1479}
1480
1481// `RegExp.prototype.flags` getter implementation
1482// https://tc39.github.io/ecma262/#sec-get-regexp.prototype.flags
1483var regexpFlags = function () {
1484 var that = anObject(this);
1485 var result = '';
1486 if (that.global) result += 'g';
1487 if (that.ignoreCase) result += 'i';
1488 if (that.multiline) result += 'm';
1489 if (that.dotAll) result += 's';
1490 if (that.unicode) result += 'u';
1491 if (that.sticky) result += 'y';
1492 return result;
1493};
1494
1495// babel-minify transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError,
1496// so we use an intermediate function.
1497function RE(s, f) {
1498 return RegExp(s, f);
1499}
1500
1501var UNSUPPORTED_Y = fails(function () {
1502 // babel-minify transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError
1503 var re = RE('a', 'y');
1504 re.lastIndex = 2;
1505 return re.exec('abcd') != null;
1506});
1507
1508var BROKEN_CARET = fails(function () {
1509 // https://bugzilla.mozilla.org/show_bug.cgi?id=773687
1510 var re = RE('^r', 'gy');
1511 re.lastIndex = 2;
1512 return re.exec('str') != null;
1513});
1514
1515var regexpStickyHelpers = {
1516 UNSUPPORTED_Y: UNSUPPORTED_Y,
1517 BROKEN_CARET: BROKEN_CARET
1518};
1519
1520var nativeExec = RegExp.prototype.exec;
1521// This always refers to the native implementation, because the
1522// String#replace polyfill uses ./fix-regexp-well-known-symbol-logic.js,
1523// which loads this file before patching the method.
1524var nativeReplace = String.prototype.replace;
1525
1526var patchedExec = nativeExec;
1527
1528var UPDATES_LAST_INDEX_WRONG = (function () {
1529 var re1 = /a/;
1530 var re2 = /b*/g;
1531 nativeExec.call(re1, 'a');
1532 nativeExec.call(re2, 'a');
1533 return re1.lastIndex !== 0 || re2.lastIndex !== 0;
1534})();
1535
1536var UNSUPPORTED_Y$1 = regexpStickyHelpers.UNSUPPORTED_Y || regexpStickyHelpers.BROKEN_CARET;
1537
1538// nonparticipating capturing group, copied from es5-shim's String#split patch.
1539var NPCG_INCLUDED = /()??/.exec('')[1] !== undefined;
1540
1541var PATCH = UPDATES_LAST_INDEX_WRONG || NPCG_INCLUDED || UNSUPPORTED_Y$1;
1542
1543if (PATCH) {
1544 patchedExec = function exec(str) {
1545 var re = this;
1546 var lastIndex, reCopy, match, i;
1547 var sticky = UNSUPPORTED_Y$1 && re.sticky;
1548 var flags = regexpFlags.call(re);
1549 var source = re.source;
1550 var charsAdded = 0;
1551 var strCopy = str;
1552
1553 if (sticky) {
1554 flags = flags.replace('y', '');
1555 if (flags.indexOf('g') === -1) {
1556 flags += 'g';
1557 }
1558
1559 strCopy = String(str).slice(re.lastIndex);
1560 // Support anchored sticky behavior.
1561 if (re.lastIndex > 0 && (!re.multiline || re.multiline && str[re.lastIndex - 1] !== '\n')) {
1562 source = '(?: ' + source + ')';
1563 strCopy = ' ' + strCopy;
1564 charsAdded++;
1565 }
1566 // ^(? + rx + ) is needed, in combination with some str slicing, to
1567 // simulate the 'y' flag.
1568 reCopy = new RegExp('^(?:' + source + ')', flags);
1569 }
1570
1571 if (NPCG_INCLUDED) {
1572 reCopy = new RegExp('^' + source + '$(?!\\s)', flags);
1573 }
1574 if (UPDATES_LAST_INDEX_WRONG) lastIndex = re.lastIndex;
1575
1576 match = nativeExec.call(sticky ? reCopy : re, strCopy);
1577
1578 if (sticky) {
1579 if (match) {
1580 match.input = match.input.slice(charsAdded);
1581 match[0] = match[0].slice(charsAdded);
1582 match.index = re.lastIndex;
1583 re.lastIndex += match[0].length;
1584 } else re.lastIndex = 0;
1585 } else if (UPDATES_LAST_INDEX_WRONG && match) {
1586 re.lastIndex = re.global ? match.index + match[0].length : lastIndex;
1587 }
1588 if (NPCG_INCLUDED && match && match.length > 1) {
1589 // Fix browsers whose `exec` methods don't consistently return `undefined`
1590 // for NPCG, like IE8. NOTE: This doesn' work for /(.?)?/
1591 nativeReplace.call(match[0], reCopy, function () {
1592 for (i = 1; i < arguments.length - 2; i++) {
1593 if (arguments[i] === undefined) match[i] = undefined;
1594 }
1595 });
1596 }
1597
1598 return match;
1599 };
1600}
1601
1602var regexpExec = patchedExec;
1603
1604_export({ target: 'RegExp', proto: true, forced: /./.exec !== regexpExec }, {
1605 exec: regexpExec
1606});
1607
1608// `String.prototype.{ codePointAt, at }` methods implementation
1609var createMethod$2 = function (CONVERT_TO_STRING) {
1610 return function ($this, pos) {
1611 var S = String(requireObjectCoercible($this));
1612 var position = toInteger(pos);
1613 var size = S.length;
1614 var first, second;
1615 if (position < 0 || position >= size) return CONVERT_TO_STRING ? '' : undefined;
1616 first = S.charCodeAt(position);
1617 return first < 0xD800 || first > 0xDBFF || position + 1 === size
1618 || (second = S.charCodeAt(position + 1)) < 0xDC00 || second > 0xDFFF
1619 ? CONVERT_TO_STRING ? S.charAt(position) : first
1620 : CONVERT_TO_STRING ? S.slice(position, position + 2) : (first - 0xD800 << 10) + (second - 0xDC00) + 0x10000;
1621 };
1622};
1623
1624var stringMultibyte = {
1625 // `String.prototype.codePointAt` method
1626 // https://tc39.github.io/ecma262/#sec-string.prototype.codepointat
1627 codeAt: createMethod$2(false),
1628 // `String.prototype.at` method
1629 // https://github.com/mathiasbynens/String.prototype.at
1630 charAt: createMethod$2(true)
1631};
1632
1633var charAt = stringMultibyte.charAt;
1634
1635
1636
1637var STRING_ITERATOR = 'String Iterator';
1638var setInternalState$2 = internalState.set;
1639var getInternalState$2 = internalState.getterFor(STRING_ITERATOR);
1640
1641// `String.prototype[@@iterator]` method
1642// https://tc39.github.io/ecma262/#sec-string.prototype-@@iterator
1643defineIterator(String, 'String', function (iterated) {
1644 setInternalState$2(this, {
1645 type: STRING_ITERATOR,
1646 string: String(iterated),
1647 index: 0
1648 });
1649// `%StringIteratorPrototype%.next` method
1650// https://tc39.github.io/ecma262/#sec-%stringiteratorprototype%.next
1651}, function next() {
1652 var state = getInternalState$2(this);
1653 var string = state.string;
1654 var index = state.index;
1655 var point;
1656 if (index >= string.length) return { value: undefined, done: true };
1657 point = charAt(string, index);
1658 state.index += point.length;
1659 return { value: point, done: false };
1660});
1661
1662var SPECIES$2 = wellKnownSymbol('species');
1663
1664var REPLACE_SUPPORTS_NAMED_GROUPS = !fails(function () {
1665 // #replace needs built-in support for named groups.
1666 // #match works fine because it just return the exec results, even if it has
1667 // a "grops" property.
1668 var re = /./;
1669 re.exec = function () {
1670 var result = [];
1671 result.groups = { a: '7' };
1672 return result;
1673 };
1674 return ''.replace(re, '$<a>') !== '7';
1675});
1676
1677// IE <= 11 replaces $0 with the whole match, as if it was $&
1678// https://stackoverflow.com/questions/6024666/getting-ie-to-replace-a-regex-with-the-literal-string-0
1679var REPLACE_KEEPS_$0 = (function () {
1680 return 'a'.replace(/./, '$0') === '$0';
1681})();
1682
1683// Chrome 51 has a buggy "split" implementation when RegExp#exec !== nativeExec
1684// Weex JS has frozen built-in prototypes, so use try / catch wrapper
1685var SPLIT_WORKS_WITH_OVERWRITTEN_EXEC = !fails(function () {
1686 var re = /(?:)/;
1687 var originalExec = re.exec;
1688 re.exec = function () { return originalExec.apply(this, arguments); };
1689 var result = 'ab'.split(re);
1690 return result.length !== 2 || result[0] !== 'a' || result[1] !== 'b';
1691});
1692
1693var fixRegexpWellKnownSymbolLogic = function (KEY, length, exec, sham) {
1694 var SYMBOL = wellKnownSymbol(KEY);
1695
1696 var DELEGATES_TO_SYMBOL = !fails(function () {
1697 // String methods call symbol-named RegEp methods
1698 var O = {};
1699 O[SYMBOL] = function () { return 7; };
1700 return ''[KEY](O) != 7;
1701 });
1702
1703 var DELEGATES_TO_EXEC = DELEGATES_TO_SYMBOL && !fails(function () {
1704 // Symbol-named RegExp methods call .exec
1705 var execCalled = false;
1706 var re = /a/;
1707
1708 if (KEY === 'split') {
1709 // We can't use real regex here since it causes deoptimization
1710 // and serious performance degradation in V8
1711 // https://github.com/zloirock/core-js/issues/306
1712 re = {};
1713 // RegExp[@@split] doesn't call the regex's exec method, but first creates
1714 // a new one. We need to return the patched regex when creating the new one.
1715 re.constructor = {};
1716 re.constructor[SPECIES$2] = function () { return re; };
1717 re.flags = '';
1718 re[SYMBOL] = /./[SYMBOL];
1719 }
1720
1721 re.exec = function () { execCalled = true; return null; };
1722
1723 re[SYMBOL]('');
1724 return !execCalled;
1725 });
1726
1727 if (
1728 !DELEGATES_TO_SYMBOL ||
1729 !DELEGATES_TO_EXEC ||
1730 (KEY === 'replace' && !(REPLACE_SUPPORTS_NAMED_GROUPS && REPLACE_KEEPS_$0)) ||
1731 (KEY === 'split' && !SPLIT_WORKS_WITH_OVERWRITTEN_EXEC)
1732 ) {
1733 var nativeRegExpMethod = /./[SYMBOL];
1734 var methods = exec(SYMBOL, ''[KEY], function (nativeMethod, regexp, str, arg2, forceStringMethod) {
1735 if (regexp.exec === regexpExec) {
1736 if (DELEGATES_TO_SYMBOL && !forceStringMethod) {
1737 // The native String method already delegates to @@method (this
1738 // polyfilled function), leasing to infinite recursion.
1739 // We avoid it by directly calling the native @@method method.
1740 return { done: true, value: nativeRegExpMethod.call(regexp, str, arg2) };
1741 }
1742 return { done: true, value: nativeMethod.call(str, regexp, arg2) };
1743 }
1744 return { done: false };
1745 }, { REPLACE_KEEPS_$0: REPLACE_KEEPS_$0 });
1746 var stringMethod = methods[0];
1747 var regexMethod = methods[1];
1748
1749 redefine(String.prototype, KEY, stringMethod);
1750 redefine(RegExp.prototype, SYMBOL, length == 2
1751 // 21.2.5.8 RegExp.prototype[@@replace](string, replaceValue)
1752 // 21.2.5.11 RegExp.prototype[@@split](string, limit)
1753 ? function (string, arg) { return regexMethod.call(string, this, arg); }
1754 // 21.2.5.6 RegExp.prototype[@@match](string)
1755 // 21.2.5.9 RegExp.prototype[@@search](string)
1756 : function (string) { return regexMethod.call(string, this); }
1757 );
1758 }
1759
1760 if (sham) createNonEnumerableProperty(RegExp.prototype[SYMBOL], 'sham', true);
1761};
1762
1763var charAt$1 = stringMultibyte.charAt;
1764
1765// `AdvanceStringIndex` abstract operation
1766// https://tc39.github.io/ecma262/#sec-advancestringindex
1767var advanceStringIndex = function (S, index, unicode) {
1768 return index + (unicode ? charAt$1(S, index).length : 1);
1769};
1770
1771// `RegExpExec` abstract operation
1772// https://tc39.github.io/ecma262/#sec-regexpexec
1773var regexpExecAbstract = function (R, S) {
1774 var exec = R.exec;
1775 if (typeof exec === 'function') {
1776 var result = exec.call(R, S);
1777 if (typeof result !== 'object') {
1778 throw TypeError('RegExp exec method returned something other than an Object or null');
1779 }
1780 return result;
1781 }
1782
1783 if (classofRaw(R) !== 'RegExp') {
1784 throw TypeError('RegExp#exec called on incompatible receiver');
1785 }
1786
1787 return regexpExec.call(R, S);
1788};
1789
1790var max$1 = Math.max;
1791var min$2 = Math.min;
1792var floor$1 = Math.floor;
1793var SUBSTITUTION_SYMBOLS = /\$([$&'`]|\d\d?|<[^>]*>)/g;
1794var SUBSTITUTION_SYMBOLS_NO_NAMED = /\$([$&'`]|\d\d?)/g;
1795
1796var maybeToString = function (it) {
1797 return it === undefined ? it : String(it);
1798};
1799
1800// @@replace logic
1801fixRegexpWellKnownSymbolLogic('replace', 2, function (REPLACE, nativeReplace, maybeCallNative, reason) {
1802 return [
1803 // `String.prototype.replace` method
1804 // https://tc39.github.io/ecma262/#sec-string.prototype.replace
1805 function replace(searchValue, replaceValue) {
1806 var O = requireObjectCoercible(this);
1807 var replacer = searchValue == undefined ? undefined : searchValue[REPLACE];
1808 return replacer !== undefined
1809 ? replacer.call(searchValue, O, replaceValue)
1810 : nativeReplace.call(String(O), searchValue, replaceValue);
1811 },
1812 // `RegExp.prototype[@@replace]` method
1813 // https://tc39.github.io/ecma262/#sec-regexp.prototype-@@replace
1814 function (regexp, replaceValue) {
1815 if (reason.REPLACE_KEEPS_$0 || (typeof replaceValue === 'string' && replaceValue.indexOf('$0') === -1)) {
1816 var res = maybeCallNative(nativeReplace, regexp, this, replaceValue);
1817 if (res.done) return res.value;
1818 }
1819
1820 var rx = anObject(regexp);
1821 var S = String(this);
1822
1823 var functionalReplace = typeof replaceValue === 'function';
1824 if (!functionalReplace) replaceValue = String(replaceValue);
1825
1826 var global = rx.global;
1827 if (global) {
1828 var fullUnicode = rx.unicode;
1829 rx.lastIndex = 0;
1830 }
1831 var results = [];
1832 while (true) {
1833 var result = regexpExecAbstract(rx, S);
1834 if (result === null) break;
1835
1836 results.push(result);
1837 if (!global) break;
1838
1839 var matchStr = String(result[0]);
1840 if (matchStr === '') rx.lastIndex = advanceStringIndex(S, toLength(rx.lastIndex), fullUnicode);
1841 }
1842
1843 var accumulatedResult = '';
1844 var nextSourcePosition = 0;
1845 for (var i = 0; i < results.length; i++) {
1846 result = results[i];
1847
1848 var matched = String(result[0]);
1849 var position = max$1(min$2(toInteger(result.index), S.length), 0);
1850 var captures = [];
1851 // NOTE: This is equivalent to
1852 // captures = result.slice(1).map(maybeToString)
1853 // but for some reason `nativeSlice.call(result, 1, result.length)` (called in
1854 // the slice polyfill when slicing native arrays) "doesn't work" in safari 9 and
1855 // causes a crash (https://pastebin.com/N21QzeQA) when trying to debug it.
1856 for (var j = 1; j < result.length; j++) captures.push(maybeToString(result[j]));
1857 var namedCaptures = result.groups;
1858 if (functionalReplace) {
1859 var replacerArgs = [matched].concat(captures, position, S);
1860 if (namedCaptures !== undefined) replacerArgs.push(namedCaptures);
1861 var replacement = String(replaceValue.apply(undefined, replacerArgs));
1862 } else {
1863 replacement = getSubstitution(matched, S, position, captures, namedCaptures, replaceValue);
1864 }
1865 if (position >= nextSourcePosition) {
1866 accumulatedResult += S.slice(nextSourcePosition, position) + replacement;
1867 nextSourcePosition = position + matched.length;
1868 }
1869 }
1870 return accumulatedResult + S.slice(nextSourcePosition);
1871 }
1872 ];
1873
1874 // https://tc39.github.io/ecma262/#sec-getsubstitution
1875 function getSubstitution(matched, str, position, captures, namedCaptures, replacement) {
1876 var tailPos = position + matched.length;
1877 var m = captures.length;
1878 var symbols = SUBSTITUTION_SYMBOLS_NO_NAMED;
1879 if (namedCaptures !== undefined) {
1880 namedCaptures = toObject(namedCaptures);
1881 symbols = SUBSTITUTION_SYMBOLS;
1882 }
1883 return nativeReplace.call(replacement, symbols, function (match, ch) {
1884 var capture;
1885 switch (ch.charAt(0)) {
1886 case '$': return '$';
1887 case '&': return matched;
1888 case '`': return str.slice(0, position);
1889 case "'": return str.slice(tailPos);
1890 case '<':
1891 capture = namedCaptures[ch.slice(1, -1)];
1892 break;
1893 default: // \d\d?
1894 var n = +ch;
1895 if (n === 0) return match;
1896 if (n > m) {
1897 var f = floor$1(n / 10);
1898 if (f === 0) return match;
1899 if (f <= m) return captures[f - 1] === undefined ? ch.charAt(1) : captures[f - 1] + ch.charAt(1);
1900 return match;
1901 }
1902 capture = captures[n - 1];
1903 }
1904 return capture === undefined ? '' : capture;
1905 });
1906 }
1907});
1908
1909// iterable DOM collections
1910// flag - `iterable` interface - 'entries', 'keys', 'values', 'forEach' methods
1911var domIterables = {
1912 CSSRuleList: 0,
1913 CSSStyleDeclaration: 0,
1914 CSSValueList: 0,
1915 ClientRectList: 0,
1916 DOMRectList: 0,
1917 DOMStringList: 0,
1918 DOMTokenList: 1,
1919 DataTransferItemList: 0,
1920 FileList: 0,
1921 HTMLAllCollection: 0,
1922 HTMLCollection: 0,
1923 HTMLFormElement: 0,
1924 HTMLSelectElement: 0,
1925 MediaList: 0,
1926 MimeTypeArray: 0,
1927 NamedNodeMap: 0,
1928 NodeList: 1,
1929 PaintRequestList: 0,
1930 Plugin: 0,
1931 PluginArray: 0,
1932 SVGLengthList: 0,
1933 SVGNumberList: 0,
1934 SVGPathSegList: 0,
1935 SVGPointList: 0,
1936 SVGStringList: 0,
1937 SVGTransformList: 0,
1938 SourceBufferList: 0,
1939 StyleSheetList: 0,
1940 TextTrackCueList: 0,
1941 TextTrackList: 0,
1942 TouchList: 0
1943};
1944
1945var ITERATOR$2 = wellKnownSymbol('iterator');
1946var TO_STRING_TAG$3 = wellKnownSymbol('toStringTag');
1947var ArrayValues = es_array_iterator.values;
1948
1949for (var COLLECTION_NAME in domIterables) {
1950 var Collection = global_1[COLLECTION_NAME];
1951 var CollectionPrototype = Collection && Collection.prototype;
1952 if (CollectionPrototype) {
1953 // some Chrome versions have non-configurable methods on DOMTokenList
1954 if (CollectionPrototype[ITERATOR$2] !== ArrayValues) try {
1955 createNonEnumerableProperty(CollectionPrototype, ITERATOR$2, ArrayValues);
1956 } catch (error) {
1957 CollectionPrototype[ITERATOR$2] = ArrayValues;
1958 }
1959 if (!CollectionPrototype[TO_STRING_TAG$3]) {
1960 createNonEnumerableProperty(CollectionPrototype, TO_STRING_TAG$3, COLLECTION_NAME);
1961 }
1962 if (domIterables[COLLECTION_NAME]) for (var METHOD_NAME in es_array_iterator) {
1963 // some Chrome versions have non-configurable methods on DOMTokenList
1964 if (CollectionPrototype[METHOD_NAME] !== es_array_iterator[METHOD_NAME]) try {
1965 createNonEnumerableProperty(CollectionPrototype, METHOD_NAME, es_array_iterator[METHOD_NAME]);
1966 } catch (error) {
1967 CollectionPrototype[METHOD_NAME] = es_array_iterator[METHOD_NAME];
1968 }
1969 }
1970 }
1971}
1972
1973function _defineProperty(obj, key, value) {
1974 if (key in obj) {
1975 Object.defineProperty(obj, key, {
1976 value: value,
1977 enumerable: true,
1978 configurable: true,
1979 writable: true
1980 });
1981 } else {
1982 obj[key] = value;
1983 }
1984
1985 return obj;
1986}
1987
1988function ownKeys$1(object, enumerableOnly) {
1989 var keys = Object.keys(object);
1990
1991 if (Object.getOwnPropertySymbols) {
1992 var symbols = Object.getOwnPropertySymbols(object);
1993 if (enumerableOnly) symbols = symbols.filter(function (sym) {
1994 return Object.getOwnPropertyDescriptor(object, sym).enumerable;
1995 });
1996 keys.push.apply(keys, symbols);
1997 }
1998
1999 return keys;
2000}
2001
2002function _objectSpread2(target) {
2003 for (var i = 1; i < arguments.length; i++) {
2004 var source = arguments[i] != null ? arguments[i] : {};
2005
2006 if (i % 2) {
2007 ownKeys$1(Object(source), true).forEach(function (key) {
2008 _defineProperty(target, key, source[key]);
2009 });
2010 } else if (Object.getOwnPropertyDescriptors) {
2011 Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
2012 } else {
2013 ownKeys$1(Object(source)).forEach(function (key) {
2014 Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
2015 });
2016 }
2017 }
2018
2019 return target;
2020}
2021
2022function _toConsumableArray(arr) {
2023 return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _nonIterableSpread();
2024}
2025
2026function _arrayWithoutHoles(arr) {
2027 if (Array.isArray(arr)) {
2028 for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) arr2[i] = arr[i];
2029
2030 return arr2;
2031 }
2032}
2033
2034function _iterableToArray(iter) {
2035 if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === "[object Arguments]") return Array.from(iter);
2036}
2037
2038function _nonIterableSpread() {
2039 throw new TypeError("Invalid attempt to spread non-iterable instance");
2040}
2041
2042//
2043//
2044//
2045//
2046var $ = window.jQuery;
2047
2048var deepCopy = function deepCopy(arg) {
2049 return $.extend(true, Array.isArray(arg) ? [] : {}, arg);
2050};
2051
2052var script = {
2053 name: 'BootstrapTable',
2054 props: {
2055 columns: {
2056 type: Array,
2057 require: true
2058 },
2059 data: {
2060 type: [Array, Object],
2061 default: function _default() {
2062 return undefined;
2063 }
2064 },
2065 options: {
2066 type: Object,
2067 default: function _default() {
2068 return {};
2069 }
2070 }
2071 },
2072 mounted: function mounted() {
2073 var _this = this;
2074
2075 this.$table = $(this.$el);
2076 this.$table.on('all.bs.table', function (e, name, args) {
2077 var eventName = $.fn.bootstrapTable.events[name];
2078 eventName = eventName.replace(/([A-Z])/g, '-$1').toLowerCase();
2079
2080 _this.$emit.apply(_this, [eventName].concat(_toConsumableArray(args)));
2081 });
2082
2083 this._initTable();
2084 },
2085 methods: _objectSpread2({
2086 _initTable: function _initTable() {
2087 var options = _objectSpread2({}, deepCopy(this.options), {
2088 columns: deepCopy(this.columns),
2089 data: deepCopy(this.data)
2090 });
2091
2092 if (!this._hasInit) {
2093 this.$table.bootstrapTable(options);
2094 this._hasInit = true;
2095 } else {
2096 this.refreshOptions(options);
2097 }
2098 }
2099 }, function () {
2100 var res = {};
2101 var _iteratorNormalCompletion = true;
2102 var _didIteratorError = false;
2103 var _iteratorError = undefined;
2104
2105 try {
2106 var _loop = function _loop() {
2107 var method = _step.value;
2108
2109 res[method] = function () {
2110 var _this$$table;
2111
2112 for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
2113 args[_key] = arguments[_key];
2114 }
2115
2116 return (_this$$table = this.$table).bootstrapTable.apply(_this$$table, [method].concat(args));
2117 };
2118 };
2119
2120 for (var _iterator = $.fn.bootstrapTable.methods[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) {
2121 _loop();
2122 }
2123 } catch (err) {
2124 _didIteratorError = true;
2125 _iteratorError = err;
2126 } finally {
2127 try {
2128 if (!_iteratorNormalCompletion && _iterator.return != null) {
2129 _iterator.return();
2130 }
2131 } finally {
2132 if (_didIteratorError) {
2133 throw _iteratorError;
2134 }
2135 }
2136 }
2137
2138 return res;
2139 }()),
2140 watch: {
2141 options: {
2142 handler: function handler() {
2143 this._initTable();
2144 },
2145 deep: true
2146 },
2147 columns: {
2148 handler: function handler() {
2149 this._initTable();
2150 },
2151 deep: true
2152 },
2153 data: {
2154 handler: function handler() {
2155 this.load(deepCopy(this.data));
2156 },
2157 deep: true
2158 }
2159 }
2160};
2161
2162function normalizeComponent(template, style, script, scopeId, isFunctionalTemplate, moduleIdentifier /* server only */, shadowMode, createInjector, createInjectorSSR, createInjectorShadow) {
2163 if (typeof shadowMode !== 'boolean') {
2164 createInjectorSSR = createInjector;
2165 createInjector = shadowMode;
2166 shadowMode = false;
2167 }
2168 // Vue.extend constructor export interop.
2169 const options = typeof script === 'function' ? script.options : script;
2170 // render functions
2171 if (template && template.render) {
2172 options.render = template.render;
2173 options.staticRenderFns = template.staticRenderFns;
2174 options._compiled = true;
2175 // functional template
2176 if (isFunctionalTemplate) {
2177 options.functional = true;
2178 }
2179 }
2180 // scopedId
2181 if (scopeId) {
2182 options._scopeId = scopeId;
2183 }
2184 let hook;
2185 if (moduleIdentifier) {
2186 // server build
2187 hook = function (context) {
2188 // 2.3 injection
2189 context =
2190 context || // cached call
2191 (this.$vnode && this.$vnode.ssrContext) || // stateful
2192 (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext); // functional
2193 // 2.2 with runInNewContext: true
2194 if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
2195 context = __VUE_SSR_CONTEXT__;
2196 }
2197 // inject component styles
2198 if (style) {
2199 style.call(this, createInjectorSSR(context));
2200 }
2201 // register component module identifier for async chunk inference
2202 if (context && context._registeredComponents) {
2203 context._registeredComponents.add(moduleIdentifier);
2204 }
2205 };
2206 // used by ssr in case component is cached and beforeCreate
2207 // never gets called
2208 options._ssrRegister = hook;
2209 }
2210 else if (style) {
2211 hook = shadowMode
2212 ? function (context) {
2213 style.call(this, createInjectorShadow(context, this.$root.$options.shadowRoot));
2214 }
2215 : function (context) {
2216 style.call(this, createInjector(context));
2217 };
2218 }
2219 if (hook) {
2220 if (options.functional) {
2221 // register for functional component in vue file
2222 const originalRender = options.render;
2223 options.render = function renderWithStyleInjection(h, context) {
2224 hook.call(context);
2225 return originalRender(h, context);
2226 };
2227 }
2228 else {
2229 // inject component registration as beforeCreate hook
2230 const existing = options.beforeCreate;
2231 options.beforeCreate = existing ? [].concat(existing, hook) : [hook];
2232 }
2233 }
2234 return script;
2235}
2236
2237/* script */
2238const __vue_script__ = script;
2239
2240/* template */
2241var __vue_render__ = function() {
2242 var _vm = this;
2243 var _h = _vm.$createElement;
2244 var _c = _vm._self._c || _h;
2245 return _c("table")
2246};
2247var __vue_staticRenderFns__ = [];
2248__vue_render__._withStripped = true;
2249
2250 /* style */
2251 const __vue_inject_styles__ = undefined;
2252 /* scoped */
2253 const __vue_scope_id__ = undefined;
2254 /* module identifier */
2255 const __vue_module_identifier__ = undefined;
2256 /* functional template */
2257 const __vue_is_functional_template__ = false;
2258 /* style inject */
2259
2260 /* style inject SSR */
2261
2262 /* style inject shadow dom */
2263
2264
2265
2266 const __vue_component__ = normalizeComponent(
2267 { render: __vue_render__, staticRenderFns: __vue_staticRenderFns__ },
2268 __vue_inject_styles__,
2269 __vue_script__,
2270 __vue_scope_id__,
2271 __vue_is_functional_template__,
2272 __vue_module_identifier__,
2273 false,
2274 undefined,
2275 undefined,
2276 undefined
2277 );
2278
2279export default __vue_component__;