@vonage/vivid 3.0.0-test.0 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,1009 @@
1
+ var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
2
+
3
+ var check = function (it) {
4
+ return it && it.Math == Math && it;
5
+ };
6
+
7
+ // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
8
+ var global$m =
9
+ // eslint-disable-next-line es/no-global-this -- safe
10
+ check(typeof globalThis == 'object' && globalThis) ||
11
+ check(typeof window == 'object' && window) ||
12
+ // eslint-disable-next-line no-restricted-globals -- safe
13
+ check(typeof self == 'object' && self) ||
14
+ check(typeof commonjsGlobal == 'object' && commonjsGlobal) ||
15
+ // eslint-disable-next-line no-new-func -- fallback
16
+ (function () { return this; })() || Function('return this')();
17
+
18
+ var fails$7 = function (exec) {
19
+ try {
20
+ return !!exec();
21
+ } catch (error) {
22
+ return true;
23
+ }
24
+ };
25
+
26
+ var fails$6 = fails$7;
27
+
28
+ var functionBindNative = !fails$6(function () {
29
+ var test = (function () { /* empty */ }).bind();
30
+ // eslint-disable-next-line no-prototype-builtins -- safe
31
+ return typeof test != 'function' || test.hasOwnProperty('prototype');
32
+ });
33
+
34
+ var NATIVE_BIND$1 = functionBindNative;
35
+
36
+ var FunctionPrototype$1 = Function.prototype;
37
+ var bind = FunctionPrototype$1.bind;
38
+ var call$4 = FunctionPrototype$1.call;
39
+ var uncurryThis$a = NATIVE_BIND$1 && bind.bind(call$4, call$4);
40
+
41
+ var functionUncurryThis = NATIVE_BIND$1 ? function (fn) {
42
+ return fn && uncurryThis$a(fn);
43
+ } : function (fn) {
44
+ return fn && function () {
45
+ return call$4.apply(fn, arguments);
46
+ };
47
+ };
48
+
49
+ var uncurryThis$9 = functionUncurryThis;
50
+
51
+ var toString$1 = uncurryThis$9({}.toString);
52
+ var stringSlice = uncurryThis$9(''.slice);
53
+
54
+ var classofRaw = function (it) {
55
+ return stringSlice(toString$1(it), 8, -1);
56
+ };
57
+
58
+ var global$l = global$m;
59
+ var uncurryThis$8 = functionUncurryThis;
60
+ var fails$5 = fails$7;
61
+ var classof = classofRaw;
62
+
63
+ var Object$3 = global$l.Object;
64
+ var split = uncurryThis$8(''.split);
65
+
66
+ // fallback for non-array-like ES3 and non-enumerable old V8 strings
67
+ var indexedObject = fails$5(function () {
68
+ // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
69
+ // eslint-disable-next-line no-prototype-builtins -- safe
70
+ return !Object$3('z').propertyIsEnumerable(0);
71
+ }) ? function (it) {
72
+ return classof(it) == 'String' ? split(it, '') : Object$3(it);
73
+ } : Object$3;
74
+
75
+ var global$k = global$m;
76
+
77
+ var TypeError$7 = global$k.TypeError;
78
+
79
+ // `RequireObjectCoercible` abstract operation
80
+ // https://tc39.es/ecma262/#sec-requireobjectcoercible
81
+ var requireObjectCoercible$2 = function (it) {
82
+ if (it == undefined) throw TypeError$7("Can't call method on " + it);
83
+ return it;
84
+ };
85
+
86
+ // toObject with fallback for non-array-like ES3 strings
87
+ var IndexedObject = indexedObject;
88
+ var requireObjectCoercible$1 = requireObjectCoercible$2;
89
+
90
+ var toIndexedObject$3 = function (it) {
91
+ return IndexedObject(requireObjectCoercible$1(it));
92
+ };
93
+
94
+ var shared$3 = {exports: {}};
95
+
96
+ var global$j = global$m;
97
+
98
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
99
+ var defineProperty$1 = Object.defineProperty;
100
+
101
+ var setGlobal$3 = function (key, value) {
102
+ try {
103
+ defineProperty$1(global$j, key, { value: value, configurable: true, writable: true });
104
+ } catch (error) {
105
+ global$j[key] = value;
106
+ } return value;
107
+ };
108
+
109
+ var global$i = global$m;
110
+ var setGlobal$2 = setGlobal$3;
111
+
112
+ var SHARED = '__core-js_shared__';
113
+ var store$3 = global$i[SHARED] || setGlobal$2(SHARED, {});
114
+
115
+ var sharedStore = store$3;
116
+
117
+ var store$2 = sharedStore;
118
+
119
+ (shared$3.exports = function (key, value) {
120
+ return store$2[key] || (store$2[key] = value !== undefined ? value : {});
121
+ })('versions', []).push({
122
+ version: '3.21.1',
123
+ mode: 'global',
124
+ copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
125
+ license: 'https://github.com/zloirock/core-js/blob/v3.21.1/LICENSE',
126
+ source: 'https://github.com/zloirock/core-js'
127
+ });
128
+
129
+ var global$h = global$m;
130
+ var requireObjectCoercible = requireObjectCoercible$2;
131
+
132
+ var Object$2 = global$h.Object;
133
+
134
+ // `ToObject` abstract operation
135
+ // https://tc39.es/ecma262/#sec-toobject
136
+ var toObject$1 = function (argument) {
137
+ return Object$2(requireObjectCoercible(argument));
138
+ };
139
+
140
+ var uncurryThis$7 = functionUncurryThis;
141
+ var toObject = toObject$1;
142
+
143
+ var hasOwnProperty = uncurryThis$7({}.hasOwnProperty);
144
+
145
+ // `HasOwnProperty` abstract operation
146
+ // https://tc39.es/ecma262/#sec-hasownproperty
147
+ var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
148
+ return hasOwnProperty(toObject(it), key);
149
+ };
150
+
151
+ var uncurryThis$6 = functionUncurryThis;
152
+
153
+ var id = 0;
154
+ var postfix = Math.random();
155
+ var toString = uncurryThis$6(1.0.toString);
156
+
157
+ var uid$2 = function (key) {
158
+ return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36);
159
+ };
160
+
161
+ // `IsCallable` abstract operation
162
+ // https://tc39.es/ecma262/#sec-iscallable
163
+ var isCallable$a = function (argument) {
164
+ return typeof argument == 'function';
165
+ };
166
+
167
+ var global$g = global$m;
168
+ var isCallable$9 = isCallable$a;
169
+
170
+ var aFunction = function (argument) {
171
+ return isCallable$9(argument) ? argument : undefined;
172
+ };
173
+
174
+ var getBuiltIn$4 = function (namespace, method) {
175
+ return arguments.length < 2 ? aFunction(global$g[namespace]) : global$g[namespace] && global$g[namespace][method];
176
+ };
177
+
178
+ var getBuiltIn$3 = getBuiltIn$4;
179
+
180
+ var engineUserAgent = getBuiltIn$3('navigator', 'userAgent') || '';
181
+
182
+ var global$f = global$m;
183
+ var userAgent = engineUserAgent;
184
+
185
+ var process = global$f.process;
186
+ var Deno = global$f.Deno;
187
+ var versions = process && process.versions || Deno && Deno.version;
188
+ var v8 = versions && versions.v8;
189
+ var match, version;
190
+
191
+ if (v8) {
192
+ match = v8.split('.');
193
+ // in old Chrome, versions of V8 isn't V8 = Chrome / 10
194
+ // but their correct versions are not interesting for us
195
+ version = match[0] > 0 && match[0] < 4 ? 1 : +(match[0] + match[1]);
196
+ }
197
+
198
+ // BrowserFS NodeJS `process` polyfill incorrectly set `.v8` to `0.0`
199
+ // so check `userAgent` even if `.v8` exists, but 0
200
+ if (!version && userAgent) {
201
+ match = userAgent.match(/Edge\/(\d+)/);
202
+ if (!match || match[1] >= 74) {
203
+ match = userAgent.match(/Chrome\/(\d+)/);
204
+ if (match) version = +match[1];
205
+ }
206
+ }
207
+
208
+ var engineV8Version = version;
209
+
210
+ /* eslint-disable es/no-symbol -- required for testing */
211
+
212
+ var V8_VERSION = engineV8Version;
213
+ var fails$4 = fails$7;
214
+
215
+ // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
216
+ var nativeSymbol = !!Object.getOwnPropertySymbols && !fails$4(function () {
217
+ var symbol = Symbol();
218
+ // Chrome 38 Symbol has incorrect toString conversion
219
+ // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
220
+ return !String(symbol) || !(Object(symbol) instanceof Symbol) ||
221
+ // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
222
+ !Symbol.sham && V8_VERSION && V8_VERSION < 41;
223
+ });
224
+
225
+ /* eslint-disable es/no-symbol -- required for testing */
226
+
227
+ var NATIVE_SYMBOL$1 = nativeSymbol;
228
+
229
+ var useSymbolAsUid = NATIVE_SYMBOL$1
230
+ && !Symbol.sham
231
+ && typeof Symbol.iterator == 'symbol';
232
+
233
+ var global$e = global$m;
234
+ var shared$2 = shared$3.exports;
235
+ var hasOwn$7 = hasOwnProperty_1;
236
+ var uid$1 = uid$2;
237
+ var NATIVE_SYMBOL = nativeSymbol;
238
+ var USE_SYMBOL_AS_UID$1 = useSymbolAsUid;
239
+
240
+ var WellKnownSymbolsStore = shared$2('wks');
241
+ var Symbol$1 = global$e.Symbol;
242
+ var symbolFor = Symbol$1 && Symbol$1['for'];
243
+ var createWellKnownSymbol = USE_SYMBOL_AS_UID$1 ? Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid$1;
244
+
245
+ var wellKnownSymbol$2 = function (name) {
246
+ if (!hasOwn$7(WellKnownSymbolsStore, name) || !(NATIVE_SYMBOL || typeof WellKnownSymbolsStore[name] == 'string')) {
247
+ var description = 'Symbol.' + name;
248
+ if (NATIVE_SYMBOL && hasOwn$7(Symbol$1, name)) {
249
+ WellKnownSymbolsStore[name] = Symbol$1[name];
250
+ } else if (USE_SYMBOL_AS_UID$1 && symbolFor) {
251
+ WellKnownSymbolsStore[name] = symbolFor(description);
252
+ } else {
253
+ WellKnownSymbolsStore[name] = createWellKnownSymbol(description);
254
+ }
255
+ } return WellKnownSymbolsStore[name];
256
+ };
257
+
258
+ var isCallable$8 = isCallable$a;
259
+
260
+ var isObject$5 = function (it) {
261
+ return typeof it == 'object' ? it !== null : isCallable$8(it);
262
+ };
263
+
264
+ var global$d = global$m;
265
+ var isObject$4 = isObject$5;
266
+
267
+ var String$3 = global$d.String;
268
+ var TypeError$6 = global$d.TypeError;
269
+
270
+ // `Assert: Type(argument) is Object`
271
+ var anObject$3 = function (argument) {
272
+ if (isObject$4(argument)) return argument;
273
+ throw TypeError$6(String$3(argument) + ' is not an object');
274
+ };
275
+
276
+ var fails$3 = fails$7;
277
+
278
+ // Detect IE8's incomplete defineProperty implementation
279
+ var descriptors = !fails$3(function () {
280
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
281
+ return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
282
+ });
283
+
284
+ var DESCRIPTORS$5 = descriptors;
285
+ var fails$2 = fails$7;
286
+
287
+ // V8 ~ Chrome 36-
288
+ // https://bugs.chromium.org/p/v8/issues/detail?id=3334
289
+ var v8PrototypeDefineBug = DESCRIPTORS$5 && fails$2(function () {
290
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
291
+ return Object.defineProperty(function () { /* empty */ }, 'prototype', {
292
+ value: 42,
293
+ writable: false
294
+ }).prototype != 42;
295
+ });
296
+
297
+ var objectDefineProperty = {};
298
+
299
+ var global$c = global$m;
300
+ var isObject$3 = isObject$5;
301
+
302
+ var document = global$c.document;
303
+ // typeof document.createElement is 'object' in old IE
304
+ var EXISTS$1 = isObject$3(document) && isObject$3(document.createElement);
305
+
306
+ var documentCreateElement = function (it) {
307
+ return EXISTS$1 ? document.createElement(it) : {};
308
+ };
309
+
310
+ var DESCRIPTORS$4 = descriptors;
311
+ var fails$1 = fails$7;
312
+ var createElement = documentCreateElement;
313
+
314
+ // Thanks to IE8 for its funny defineProperty
315
+ var ie8DomDefine = !DESCRIPTORS$4 && !fails$1(function () {
316
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
317
+ return Object.defineProperty(createElement('div'), 'a', {
318
+ get: function () { return 7; }
319
+ }).a != 7;
320
+ });
321
+
322
+ var NATIVE_BIND = functionBindNative;
323
+
324
+ var call$3 = Function.prototype.call;
325
+
326
+ var functionCall = NATIVE_BIND ? call$3.bind(call$3) : function () {
327
+ return call$3.apply(call$3, arguments);
328
+ };
329
+
330
+ var uncurryThis$5 = functionUncurryThis;
331
+
332
+ var objectIsPrototypeOf = uncurryThis$5({}.isPrototypeOf);
333
+
334
+ var global$b = global$m;
335
+ var getBuiltIn$2 = getBuiltIn$4;
336
+ var isCallable$7 = isCallable$a;
337
+ var isPrototypeOf = objectIsPrototypeOf;
338
+ var USE_SYMBOL_AS_UID = useSymbolAsUid;
339
+
340
+ var Object$1 = global$b.Object;
341
+
342
+ var isSymbol$2 = USE_SYMBOL_AS_UID ? function (it) {
343
+ return typeof it == 'symbol';
344
+ } : function (it) {
345
+ var $Symbol = getBuiltIn$2('Symbol');
346
+ return isCallable$7($Symbol) && isPrototypeOf($Symbol.prototype, Object$1(it));
347
+ };
348
+
349
+ var global$a = global$m;
350
+
351
+ var String$2 = global$a.String;
352
+
353
+ var tryToString$1 = function (argument) {
354
+ try {
355
+ return String$2(argument);
356
+ } catch (error) {
357
+ return 'Object';
358
+ }
359
+ };
360
+
361
+ var global$9 = global$m;
362
+ var isCallable$6 = isCallable$a;
363
+ var tryToString = tryToString$1;
364
+
365
+ var TypeError$5 = global$9.TypeError;
366
+
367
+ // `Assert: IsCallable(argument) is true`
368
+ var aCallable$1 = function (argument) {
369
+ if (isCallable$6(argument)) return argument;
370
+ throw TypeError$5(tryToString(argument) + ' is not a function');
371
+ };
372
+
373
+ var aCallable = aCallable$1;
374
+
375
+ // `GetMethod` abstract operation
376
+ // https://tc39.es/ecma262/#sec-getmethod
377
+ var getMethod$1 = function (V, P) {
378
+ var func = V[P];
379
+ return func == null ? undefined : aCallable(func);
380
+ };
381
+
382
+ var global$8 = global$m;
383
+ var call$2 = functionCall;
384
+ var isCallable$5 = isCallable$a;
385
+ var isObject$2 = isObject$5;
386
+
387
+ var TypeError$4 = global$8.TypeError;
388
+
389
+ // `OrdinaryToPrimitive` abstract operation
390
+ // https://tc39.es/ecma262/#sec-ordinarytoprimitive
391
+ var ordinaryToPrimitive$1 = function (input, pref) {
392
+ var fn, val;
393
+ if (pref === 'string' && isCallable$5(fn = input.toString) && !isObject$2(val = call$2(fn, input))) return val;
394
+ if (isCallable$5(fn = input.valueOf) && !isObject$2(val = call$2(fn, input))) return val;
395
+ if (pref !== 'string' && isCallable$5(fn = input.toString) && !isObject$2(val = call$2(fn, input))) return val;
396
+ throw TypeError$4("Can't convert object to primitive value");
397
+ };
398
+
399
+ var global$7 = global$m;
400
+ var call$1 = functionCall;
401
+ var isObject$1 = isObject$5;
402
+ var isSymbol$1 = isSymbol$2;
403
+ var getMethod = getMethod$1;
404
+ var ordinaryToPrimitive = ordinaryToPrimitive$1;
405
+ var wellKnownSymbol$1 = wellKnownSymbol$2;
406
+
407
+ var TypeError$3 = global$7.TypeError;
408
+ var TO_PRIMITIVE = wellKnownSymbol$1('toPrimitive');
409
+
410
+ // `ToPrimitive` abstract operation
411
+ // https://tc39.es/ecma262/#sec-toprimitive
412
+ var toPrimitive$1 = function (input, pref) {
413
+ if (!isObject$1(input) || isSymbol$1(input)) return input;
414
+ var exoticToPrim = getMethod(input, TO_PRIMITIVE);
415
+ var result;
416
+ if (exoticToPrim) {
417
+ if (pref === undefined) pref = 'default';
418
+ result = call$1(exoticToPrim, input, pref);
419
+ if (!isObject$1(result) || isSymbol$1(result)) return result;
420
+ throw TypeError$3("Can't convert object to primitive value");
421
+ }
422
+ if (pref === undefined) pref = 'number';
423
+ return ordinaryToPrimitive(input, pref);
424
+ };
425
+
426
+ var toPrimitive = toPrimitive$1;
427
+ var isSymbol = isSymbol$2;
428
+
429
+ // `ToPropertyKey` abstract operation
430
+ // https://tc39.es/ecma262/#sec-topropertykey
431
+ var toPropertyKey$2 = function (argument) {
432
+ var key = toPrimitive(argument, 'string');
433
+ return isSymbol(key) ? key : key + '';
434
+ };
435
+
436
+ var global$6 = global$m;
437
+ var DESCRIPTORS$3 = descriptors;
438
+ var IE8_DOM_DEFINE$1 = ie8DomDefine;
439
+ var V8_PROTOTYPE_DEFINE_BUG = v8PrototypeDefineBug;
440
+ var anObject$2 = anObject$3;
441
+ var toPropertyKey$1 = toPropertyKey$2;
442
+
443
+ var TypeError$2 = global$6.TypeError;
444
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
445
+ var $defineProperty = Object.defineProperty;
446
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
447
+ var $getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
448
+ var ENUMERABLE = 'enumerable';
449
+ var CONFIGURABLE$1 = 'configurable';
450
+ var WRITABLE = 'writable';
451
+
452
+ // `Object.defineProperty` method
453
+ // https://tc39.es/ecma262/#sec-object.defineproperty
454
+ objectDefineProperty.f = DESCRIPTORS$3 ? V8_PROTOTYPE_DEFINE_BUG ? function defineProperty(O, P, Attributes) {
455
+ anObject$2(O);
456
+ P = toPropertyKey$1(P);
457
+ anObject$2(Attributes);
458
+ if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {
459
+ var current = $getOwnPropertyDescriptor$1(O, P);
460
+ if (current && current[WRITABLE]) {
461
+ O[P] = Attributes.value;
462
+ Attributes = {
463
+ configurable: CONFIGURABLE$1 in Attributes ? Attributes[CONFIGURABLE$1] : current[CONFIGURABLE$1],
464
+ enumerable: ENUMERABLE in Attributes ? Attributes[ENUMERABLE] : current[ENUMERABLE],
465
+ writable: false
466
+ };
467
+ }
468
+ } return $defineProperty(O, P, Attributes);
469
+ } : $defineProperty : function defineProperty(O, P, Attributes) {
470
+ anObject$2(O);
471
+ P = toPropertyKey$1(P);
472
+ anObject$2(Attributes);
473
+ if (IE8_DOM_DEFINE$1) try {
474
+ return $defineProperty(O, P, Attributes);
475
+ } catch (error) { /* empty */ }
476
+ if ('get' in Attributes || 'set' in Attributes) throw TypeError$2('Accessors not supported');
477
+ if ('value' in Attributes) O[P] = Attributes.value;
478
+ return O;
479
+ };
480
+
481
+ var ceil = Math.ceil;
482
+ var floor = Math.floor;
483
+
484
+ // `ToIntegerOrInfinity` abstract operation
485
+ // https://tc39.es/ecma262/#sec-tointegerorinfinity
486
+ var toIntegerOrInfinity$2 = function (argument) {
487
+ var number = +argument;
488
+ // eslint-disable-next-line no-self-compare -- safe
489
+ return number !== number || number === 0 ? 0 : (number > 0 ? floor : ceil)(number);
490
+ };
491
+
492
+ var toIntegerOrInfinity$1 = toIntegerOrInfinity$2;
493
+
494
+ var max = Math.max;
495
+ var min$1 = Math.min;
496
+
497
+ // Helper for a popular repeating case of the spec:
498
+ // Let integer be ? ToInteger(index).
499
+ // If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
500
+ var toAbsoluteIndex$1 = function (index, length) {
501
+ var integer = toIntegerOrInfinity$1(index);
502
+ return integer < 0 ? max(integer + length, 0) : min$1(integer, length);
503
+ };
504
+
505
+ var toIntegerOrInfinity = toIntegerOrInfinity$2;
506
+
507
+ var min = Math.min;
508
+
509
+ // `ToLength` abstract operation
510
+ // https://tc39.es/ecma262/#sec-tolength
511
+ var toLength$1 = function (argument) {
512
+ return argument > 0 ? min(toIntegerOrInfinity(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
513
+ };
514
+
515
+ var toLength = toLength$1;
516
+
517
+ // `LengthOfArrayLike` abstract operation
518
+ // https://tc39.es/ecma262/#sec-lengthofarraylike
519
+ var lengthOfArrayLike$1 = function (obj) {
520
+ return toLength(obj.length);
521
+ };
522
+
523
+ var toIndexedObject$2 = toIndexedObject$3;
524
+ var toAbsoluteIndex = toAbsoluteIndex$1;
525
+ var lengthOfArrayLike = lengthOfArrayLike$1;
526
+
527
+ // `Array.prototype.{ indexOf, includes }` methods implementation
528
+ var createMethod = function (IS_INCLUDES) {
529
+ return function ($this, el, fromIndex) {
530
+ var O = toIndexedObject$2($this);
531
+ var length = lengthOfArrayLike(O);
532
+ var index = toAbsoluteIndex(fromIndex, length);
533
+ var value;
534
+ // Array#includes uses SameValueZero equality algorithm
535
+ // eslint-disable-next-line no-self-compare -- NaN check
536
+ if (IS_INCLUDES && el != el) while (length > index) {
537
+ value = O[index++];
538
+ // eslint-disable-next-line no-self-compare -- NaN check
539
+ if (value != value) return true;
540
+ // Array#indexOf ignores holes, Array#includes - not
541
+ } else for (;length > index; index++) {
542
+ if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
543
+ } return !IS_INCLUDES && -1;
544
+ };
545
+ };
546
+
547
+ var arrayIncludes = {
548
+ // `Array.prototype.includes` method
549
+ // https://tc39.es/ecma262/#sec-array.prototype.includes
550
+ includes: createMethod(true),
551
+ // `Array.prototype.indexOf` method
552
+ // https://tc39.es/ecma262/#sec-array.prototype.indexof
553
+ indexOf: createMethod(false)
554
+ };
555
+
556
+ var hiddenKeys$3 = {};
557
+
558
+ var uncurryThis$4 = functionUncurryThis;
559
+ var hasOwn$6 = hasOwnProperty_1;
560
+ var toIndexedObject$1 = toIndexedObject$3;
561
+ var indexOf = arrayIncludes.indexOf;
562
+ var hiddenKeys$2 = hiddenKeys$3;
563
+
564
+ var push = uncurryThis$4([].push);
565
+
566
+ var objectKeysInternal = function (object, names) {
567
+ var O = toIndexedObject$1(object);
568
+ var i = 0;
569
+ var result = [];
570
+ var key;
571
+ for (key in O) !hasOwn$6(hiddenKeys$2, key) && hasOwn$6(O, key) && push(result, key);
572
+ // Don't enum bug & hidden keys
573
+ while (names.length > i) if (hasOwn$6(O, key = names[i++])) {
574
+ ~indexOf(result, key) || push(result, key);
575
+ }
576
+ return result;
577
+ };
578
+
579
+ // IE8- don't enum bug keys
580
+ var enumBugKeys$1 = [
581
+ 'constructor',
582
+ 'hasOwnProperty',
583
+ 'isPrototypeOf',
584
+ 'propertyIsEnumerable',
585
+ 'toLocaleString',
586
+ 'toString',
587
+ 'valueOf'
588
+ ];
589
+
590
+ var getBuiltIn$1 = getBuiltIn$4;
591
+
592
+ var html = getBuiltIn$1('document', 'documentElement');
593
+
594
+ var shared$1 = shared$3.exports;
595
+ var uid = uid$2;
596
+
597
+ var keys = shared$1('keys');
598
+
599
+ var sharedKey$1 = function (key) {
600
+ return keys[key] || (keys[key] = uid(key));
601
+ };
602
+
603
+ var iterators = {};
604
+
605
+ var uncurryThis$3 = functionUncurryThis;
606
+ var isCallable$4 = isCallable$a;
607
+ var store$1 = sharedStore;
608
+
609
+ var functionToString = uncurryThis$3(Function.toString);
610
+
611
+ // this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
612
+ if (!isCallable$4(store$1.inspectSource)) {
613
+ store$1.inspectSource = function (it) {
614
+ return functionToString(it);
615
+ };
616
+ }
617
+
618
+ var inspectSource$2 = store$1.inspectSource;
619
+
620
+ var global$5 = global$m;
621
+ var isCallable$3 = isCallable$a;
622
+ var inspectSource$1 = inspectSource$2;
623
+
624
+ var WeakMap$1 = global$5.WeakMap;
625
+
626
+ var nativeWeakMap = isCallable$3(WeakMap$1) && /native code/.test(inspectSource$1(WeakMap$1));
627
+
628
+ var createPropertyDescriptor$2 = function (bitmap, value) {
629
+ return {
630
+ enumerable: !(bitmap & 1),
631
+ configurable: !(bitmap & 2),
632
+ writable: !(bitmap & 4),
633
+ value: value
634
+ };
635
+ };
636
+
637
+ var DESCRIPTORS$2 = descriptors;
638
+ var definePropertyModule$1 = objectDefineProperty;
639
+ var createPropertyDescriptor$1 = createPropertyDescriptor$2;
640
+
641
+ var createNonEnumerableProperty$3 = DESCRIPTORS$2 ? function (object, key, value) {
642
+ return definePropertyModule$1.f(object, key, createPropertyDescriptor$1(1, value));
643
+ } : function (object, key, value) {
644
+ object[key] = value;
645
+ return object;
646
+ };
647
+
648
+ var NATIVE_WEAK_MAP = nativeWeakMap;
649
+ var global$4 = global$m;
650
+ var uncurryThis$2 = functionUncurryThis;
651
+ var isObject = isObject$5;
652
+ var createNonEnumerableProperty$2 = createNonEnumerableProperty$3;
653
+ var hasOwn$5 = hasOwnProperty_1;
654
+ var shared = sharedStore;
655
+ var sharedKey = sharedKey$1;
656
+ var hiddenKeys$1 = hiddenKeys$3;
657
+
658
+ var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
659
+ var TypeError$1 = global$4.TypeError;
660
+ var WeakMap = global$4.WeakMap;
661
+ var set, get, has;
662
+
663
+ var enforce = function (it) {
664
+ return has(it) ? get(it) : set(it, {});
665
+ };
666
+
667
+ var getterFor = function (TYPE) {
668
+ return function (it) {
669
+ var state;
670
+ if (!isObject(it) || (state = get(it)).type !== TYPE) {
671
+ throw TypeError$1('Incompatible receiver, ' + TYPE + ' required');
672
+ } return state;
673
+ };
674
+ };
675
+
676
+ if (NATIVE_WEAK_MAP || shared.state) {
677
+ var store = shared.state || (shared.state = new WeakMap());
678
+ var wmget = uncurryThis$2(store.get);
679
+ var wmhas = uncurryThis$2(store.has);
680
+ var wmset = uncurryThis$2(store.set);
681
+ set = function (it, metadata) {
682
+ if (wmhas(store, it)) throw new TypeError$1(OBJECT_ALREADY_INITIALIZED);
683
+ metadata.facade = it;
684
+ wmset(store, it, metadata);
685
+ return metadata;
686
+ };
687
+ get = function (it) {
688
+ return wmget(store, it) || {};
689
+ };
690
+ has = function (it) {
691
+ return wmhas(store, it);
692
+ };
693
+ } else {
694
+ var STATE = sharedKey('state');
695
+ hiddenKeys$1[STATE] = true;
696
+ set = function (it, metadata) {
697
+ if (hasOwn$5(it, STATE)) throw new TypeError$1(OBJECT_ALREADY_INITIALIZED);
698
+ metadata.facade = it;
699
+ createNonEnumerableProperty$2(it, STATE, metadata);
700
+ return metadata;
701
+ };
702
+ get = function (it) {
703
+ return hasOwn$5(it, STATE) ? it[STATE] : {};
704
+ };
705
+ has = function (it) {
706
+ return hasOwn$5(it, STATE);
707
+ };
708
+ }
709
+
710
+ var internalState = {
711
+ set: set,
712
+ get: get,
713
+ has: has,
714
+ enforce: enforce,
715
+ getterFor: getterFor
716
+ };
717
+
718
+ var objectGetOwnPropertyDescriptor = {};
719
+
720
+ var objectPropertyIsEnumerable = {};
721
+
722
+ var $propertyIsEnumerable = {}.propertyIsEnumerable;
723
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
724
+ var getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
725
+
726
+ // Nashorn ~ JDK8 bug
727
+ var NASHORN_BUG = getOwnPropertyDescriptor$1 && !$propertyIsEnumerable.call({ 1: 2 }, 1);
728
+
729
+ // `Object.prototype.propertyIsEnumerable` method implementation
730
+ // https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable
731
+ objectPropertyIsEnumerable.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
732
+ var descriptor = getOwnPropertyDescriptor$1(this, V);
733
+ return !!descriptor && descriptor.enumerable;
734
+ } : $propertyIsEnumerable;
735
+
736
+ var DESCRIPTORS$1 = descriptors;
737
+ var call = functionCall;
738
+ var propertyIsEnumerableModule = objectPropertyIsEnumerable;
739
+ var createPropertyDescriptor = createPropertyDescriptor$2;
740
+ var toIndexedObject = toIndexedObject$3;
741
+ var toPropertyKey = toPropertyKey$2;
742
+ var hasOwn$4 = hasOwnProperty_1;
743
+ var IE8_DOM_DEFINE = ie8DomDefine;
744
+
745
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
746
+ var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
747
+
748
+ // `Object.getOwnPropertyDescriptor` method
749
+ // https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
750
+ objectGetOwnPropertyDescriptor.f = DESCRIPTORS$1 ? $getOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {
751
+ O = toIndexedObject(O);
752
+ P = toPropertyKey(P);
753
+ if (IE8_DOM_DEFINE) try {
754
+ return $getOwnPropertyDescriptor(O, P);
755
+ } catch (error) { /* empty */ }
756
+ if (hasOwn$4(O, P)) return createPropertyDescriptor(!call(propertyIsEnumerableModule.f, O, P), O[P]);
757
+ };
758
+
759
+ var redefine$1 = {exports: {}};
760
+
761
+ var DESCRIPTORS = descriptors;
762
+ var hasOwn$3 = hasOwnProperty_1;
763
+
764
+ var FunctionPrototype = Function.prototype;
765
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
766
+ var getDescriptor = DESCRIPTORS && Object.getOwnPropertyDescriptor;
767
+
768
+ var EXISTS = hasOwn$3(FunctionPrototype, 'name');
769
+ // additional protection from minified / mangled / dropped function names
770
+ var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
771
+ var CONFIGURABLE = EXISTS && (!DESCRIPTORS || (DESCRIPTORS && getDescriptor(FunctionPrototype, 'name').configurable));
772
+
773
+ var functionName = {
774
+ EXISTS: EXISTS,
775
+ PROPER: PROPER,
776
+ CONFIGURABLE: CONFIGURABLE
777
+ };
778
+
779
+ var global$3 = global$m;
780
+ var isCallable$2 = isCallable$a;
781
+ var hasOwn$2 = hasOwnProperty_1;
782
+ var createNonEnumerableProperty$1 = createNonEnumerableProperty$3;
783
+ var setGlobal$1 = setGlobal$3;
784
+ var inspectSource = inspectSource$2;
785
+ var InternalStateModule = internalState;
786
+ var CONFIGURABLE_FUNCTION_NAME = functionName.CONFIGURABLE;
787
+
788
+ var getInternalState = InternalStateModule.get;
789
+ var enforceInternalState = InternalStateModule.enforce;
790
+ var TEMPLATE = String(String).split('String');
791
+
792
+ (redefine$1.exports = function (O, key, value, options) {
793
+ var unsafe = options ? !!options.unsafe : false;
794
+ var simple = options ? !!options.enumerable : false;
795
+ var noTargetGet = options ? !!options.noTargetGet : false;
796
+ var name = options && options.name !== undefined ? options.name : key;
797
+ var state;
798
+ if (isCallable$2(value)) {
799
+ if (String(name).slice(0, 7) === 'Symbol(') {
800
+ name = '[' + String(name).replace(/^Symbol\(([^)]*)\)/, '$1') + ']';
801
+ }
802
+ if (!hasOwn$2(value, 'name') || (CONFIGURABLE_FUNCTION_NAME && value.name !== name)) {
803
+ createNonEnumerableProperty$1(value, 'name', name);
804
+ }
805
+ state = enforceInternalState(value);
806
+ if (!state.source) {
807
+ state.source = TEMPLATE.join(typeof name == 'string' ? name : '');
808
+ }
809
+ }
810
+ if (O === global$3) {
811
+ if (simple) O[key] = value;
812
+ else setGlobal$1(key, value);
813
+ return;
814
+ } else if (!unsafe) {
815
+ delete O[key];
816
+ } else if (!noTargetGet && O[key]) {
817
+ simple = true;
818
+ }
819
+ if (simple) O[key] = value;
820
+ else createNonEnumerableProperty$1(O, key, value);
821
+ // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
822
+ })(Function.prototype, 'toString', function toString() {
823
+ return isCallable$2(this) && getInternalState(this).source || inspectSource(this);
824
+ });
825
+
826
+ var objectGetOwnPropertyNames = {};
827
+
828
+ var internalObjectKeys = objectKeysInternal;
829
+ var enumBugKeys = enumBugKeys$1;
830
+
831
+ var hiddenKeys = enumBugKeys.concat('length', 'prototype');
832
+
833
+ // `Object.getOwnPropertyNames` method
834
+ // https://tc39.es/ecma262/#sec-object.getownpropertynames
835
+ // eslint-disable-next-line es/no-object-getownpropertynames -- safe
836
+ objectGetOwnPropertyNames.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
837
+ return internalObjectKeys(O, hiddenKeys);
838
+ };
839
+
840
+ var objectGetOwnPropertySymbols = {};
841
+
842
+ // eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
843
+ objectGetOwnPropertySymbols.f = Object.getOwnPropertySymbols;
844
+
845
+ var getBuiltIn = getBuiltIn$4;
846
+ var uncurryThis$1 = functionUncurryThis;
847
+ var getOwnPropertyNamesModule = objectGetOwnPropertyNames;
848
+ var getOwnPropertySymbolsModule = objectGetOwnPropertySymbols;
849
+ var anObject$1 = anObject$3;
850
+
851
+ var concat = uncurryThis$1([].concat);
852
+
853
+ // all object keys, includes non-enumerable and symbols
854
+ var ownKeys$1 = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {
855
+ var keys = getOwnPropertyNamesModule.f(anObject$1(it));
856
+ var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
857
+ return getOwnPropertySymbols ? concat(keys, getOwnPropertySymbols(it)) : keys;
858
+ };
859
+
860
+ var hasOwn$1 = hasOwnProperty_1;
861
+ var ownKeys = ownKeys$1;
862
+ var getOwnPropertyDescriptorModule = objectGetOwnPropertyDescriptor;
863
+ var definePropertyModule = objectDefineProperty;
864
+
865
+ var copyConstructorProperties$1 = function (target, source, exceptions) {
866
+ var keys = ownKeys(source);
867
+ var defineProperty = definePropertyModule.f;
868
+ var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
869
+ for (var i = 0; i < keys.length; i++) {
870
+ var key = keys[i];
871
+ if (!hasOwn$1(target, key) && !(exceptions && hasOwn$1(exceptions, key))) {
872
+ defineProperty(target, key, getOwnPropertyDescriptor(source, key));
873
+ }
874
+ }
875
+ };
876
+
877
+ var fails = fails$7;
878
+ var isCallable$1 = isCallable$a;
879
+
880
+ var replacement = /#|\.prototype\./;
881
+
882
+ var isForced$1 = function (feature, detection) {
883
+ var value = data[normalize(feature)];
884
+ return value == POLYFILL ? true
885
+ : value == NATIVE ? false
886
+ : isCallable$1(detection) ? fails(detection)
887
+ : !!detection;
888
+ };
889
+
890
+ var normalize = isForced$1.normalize = function (string) {
891
+ return String(string).replace(replacement, '.').toLowerCase();
892
+ };
893
+
894
+ var data = isForced$1.data = {};
895
+ var NATIVE = isForced$1.NATIVE = 'N';
896
+ var POLYFILL = isForced$1.POLYFILL = 'P';
897
+
898
+ var isForced_1 = isForced$1;
899
+
900
+ var global$2 = global$m;
901
+ var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
902
+ var createNonEnumerableProperty = createNonEnumerableProperty$3;
903
+ var redefine = redefine$1.exports;
904
+ var setGlobal = setGlobal$3;
905
+ var copyConstructorProperties = copyConstructorProperties$1;
906
+ var isForced = isForced_1;
907
+
908
+ /*
909
+ options.target - name of the target object
910
+ options.global - target is the global object
911
+ options.stat - export as static methods of target
912
+ options.proto - export as prototype methods of target
913
+ options.real - real prototype method for the `pure` version
914
+ options.forced - export even if the native feature is available
915
+ options.bind - bind methods to the target, required for the `pure` version
916
+ options.wrap - wrap constructors to preventing global pollution, required for the `pure` version
917
+ options.unsafe - use the simple assignment of property instead of delete + defineProperty
918
+ options.sham - add a flag to not completely full polyfills
919
+ options.enumerable - export as enumerable property
920
+ options.noTargetGet - prevent calling a getter on target
921
+ options.name - the .name of the function if it does not match the key
922
+ */
923
+ var _export = function (options, source) {
924
+ var TARGET = options.target;
925
+ var GLOBAL = options.global;
926
+ var STATIC = options.stat;
927
+ var FORCED, target, key, targetProperty, sourceProperty, descriptor;
928
+ if (GLOBAL) {
929
+ target = global$2;
930
+ } else if (STATIC) {
931
+ target = global$2[TARGET] || setGlobal(TARGET, {});
932
+ } else {
933
+ target = (global$2[TARGET] || {}).prototype;
934
+ }
935
+ if (target) for (key in source) {
936
+ sourceProperty = source[key];
937
+ if (options.noTargetGet) {
938
+ descriptor = getOwnPropertyDescriptor(target, key);
939
+ targetProperty = descriptor && descriptor.value;
940
+ } else targetProperty = target[key];
941
+ FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
942
+ // contained in target
943
+ if (!FORCED && targetProperty !== undefined) {
944
+ if (typeof sourceProperty == typeof targetProperty) continue;
945
+ copyConstructorProperties(sourceProperty, targetProperty);
946
+ }
947
+ // add a flag to not completely full polyfills
948
+ if (options.sham || (targetProperty && targetProperty.sham)) {
949
+ createNonEnumerableProperty(sourceProperty, 'sham', true);
950
+ }
951
+ // extend global
952
+ redefine(target, key, sourceProperty, options);
953
+ }
954
+ };
955
+
956
+ var defineProperty = objectDefineProperty.f;
957
+ var hasOwn = hasOwnProperty_1;
958
+ var wellKnownSymbol = wellKnownSymbol$2;
959
+
960
+ var TO_STRING_TAG = wellKnownSymbol('toStringTag');
961
+
962
+ var setToStringTag = function (target, TAG, STATIC) {
963
+ if (target && !STATIC) target = target.prototype;
964
+ if (target && !hasOwn(target, TO_STRING_TAG)) {
965
+ defineProperty(target, TO_STRING_TAG, { configurable: true, value: TAG });
966
+ }
967
+ };
968
+
969
+ var global$1 = global$m;
970
+ var isCallable = isCallable$a;
971
+
972
+ var String$1 = global$1.String;
973
+ var TypeError = global$1.TypeError;
974
+
975
+ var aPossiblePrototype$1 = function (argument) {
976
+ if (typeof argument == 'object' || isCallable(argument)) return argument;
977
+ throw TypeError("Can't set " + String$1(argument) + ' as a prototype');
978
+ };
979
+
980
+ /* eslint-disable no-proto -- safe */
981
+
982
+ var uncurryThis = functionUncurryThis;
983
+ var anObject = anObject$3;
984
+ var aPossiblePrototype = aPossiblePrototype$1;
985
+
986
+ // `Object.setPrototypeOf` method
987
+ // https://tc39.es/ecma262/#sec-object.setprototypeof
988
+ // Works with __proto__ only. Old v8 can't work with null proto objects.
989
+ // eslint-disable-next-line es/no-object-setprototypeof -- safe
990
+ var objectSetPrototypeOf = Object.setPrototypeOf || ('__proto__' in {} ? function () {
991
+ var CORRECT_SETTER = false;
992
+ var test = {};
993
+ var setter;
994
+ try {
995
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
996
+ setter = uncurryThis(Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set);
997
+ setter(test, []);
998
+ CORRECT_SETTER = test instanceof Array;
999
+ } catch (error) { /* empty */ }
1000
+ return function setPrototypeOf(O, proto) {
1001
+ anObject(O);
1002
+ aPossiblePrototype(proto);
1003
+ if (CORRECT_SETTER) setter(O, proto);
1004
+ else O.__proto__ = proto;
1005
+ return O;
1006
+ };
1007
+ }() : undefined);
1008
+
1009
+ export { getBuiltIn$4 as A, objectIsPrototypeOf as B, functionUncurryThis as C, functionBindNative as D, aCallable$1 as E, classofRaw as F, getMethod$1 as G, tryToString$1 as H, lengthOfArrayLike$1 as I, inspectSource$2 as J, engineUserAgent as K, objectGetOwnPropertyDescriptor as L, isObject$5 as M, isForced_1 as N, engineV8Version as O, requireObjectCoercible$2 as P, indexedObject as Q, objectGetOwnPropertySymbols as R, objectPropertyIsEnumerable as S, shared$3 as T, toIntegerOrInfinity$2 as U, toPropertyKey$2 as V, toAbsoluteIndex$1 as W, toLength$1 as X, _export as _, objectDefineProperty as a, anObject$3 as b, html as c, descriptors as d, enumBugKeys$1 as e, documentCreateElement as f, fails$7 as g, hiddenKeys$3 as h, global$m as i, hasOwnProperty_1 as j, isCallable$a as k, toObject$1 as l, createPropertyDescriptor$2 as m, setToStringTag as n, objectKeysInternal as o, iterators as p, objectSetPrototypeOf as q, redefine$1 as r, sharedKey$1 as s, toIndexedObject$3 as t, createNonEnumerableProperty$3 as u, v8PrototypeDefineBug as v, wellKnownSymbol$2 as w, functionCall as x, functionName as y, internalState as z };