hplx-react-elements-dev 1.0.91 → 1.0.92

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.
Files changed (2) hide show
  1. package/dist/esm/index.js +472 -291
  2. package/package.json +1 -1
package/dist/esm/index.js CHANGED
@@ -41,7 +41,7 @@ var global$e =
41
41
 
42
42
  var objectGetOwnPropertyDescriptor = {};
43
43
 
44
- var fails$k = function (exec) {
44
+ var fails$l = function (exec) {
45
45
  try {
46
46
  return !!exec();
47
47
  } catch (error) {
@@ -49,17 +49,17 @@ var fails$k = function (exec) {
49
49
  }
50
50
  };
51
51
 
52
- var fails$j = fails$k;
52
+ var fails$k = fails$l;
53
53
 
54
54
  // Detect IE8's incomplete defineProperty implementation
55
- var descriptors = !fails$j(function () {
55
+ var descriptors = !fails$k(function () {
56
56
  // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
57
57
  return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
58
58
  });
59
59
 
60
- var fails$i = fails$k;
60
+ var fails$j = fails$l;
61
61
 
62
- var functionBindNative = !fails$i(function () {
62
+ var functionBindNative = !fails$j(function () {
63
63
  // eslint-disable-next-line es-x/no-function-prototype-bind -- safe
64
64
  var test = (function () { /* empty */ }).bind();
65
65
  // eslint-disable-next-line no-prototype-builtins -- safe
@@ -68,10 +68,10 @@ var functionBindNative = !fails$i(function () {
68
68
 
69
69
  var NATIVE_BIND$2 = functionBindNative;
70
70
 
71
- var call$a = Function.prototype.call;
71
+ var call$b = Function.prototype.call;
72
72
 
73
- var functionCall = NATIVE_BIND$2 ? call$a.bind(call$a) : function () {
74
- return call$a.apply(call$a, arguments);
73
+ var functionCall = NATIVE_BIND$2 ? call$b.bind(call$b) : function () {
74
+ return call$b.apply(call$b, arguments);
75
75
  };
76
76
 
77
77
  var objectPropertyIsEnumerable = {};
@@ -103,35 +103,35 @@ var NATIVE_BIND$1 = functionBindNative;
103
103
 
104
104
  var FunctionPrototype$2 = Function.prototype;
105
105
  var bind = FunctionPrototype$2.bind;
106
- var call$9 = FunctionPrototype$2.call;
107
- var uncurryThis$m = NATIVE_BIND$1 && bind.bind(call$9, call$9);
106
+ var call$a = FunctionPrototype$2.call;
107
+ var uncurryThis$o = NATIVE_BIND$1 && bind.bind(call$a, call$a);
108
108
 
109
109
  var functionUncurryThis = NATIVE_BIND$1 ? function (fn) {
110
- return fn && uncurryThis$m(fn);
110
+ return fn && uncurryThis$o(fn);
111
111
  } : function (fn) {
112
112
  return fn && function () {
113
- return call$9.apply(fn, arguments);
113
+ return call$a.apply(fn, arguments);
114
114
  };
115
115
  };
116
116
 
117
- var uncurryThis$l = functionUncurryThis;
117
+ var uncurryThis$n = functionUncurryThis;
118
118
 
119
- var toString$b = uncurryThis$l({}.toString);
120
- var stringSlice$5 = uncurryThis$l(''.slice);
119
+ var toString$c = uncurryThis$n({}.toString);
120
+ var stringSlice$7 = uncurryThis$n(''.slice);
121
121
 
122
122
  var classofRaw$1 = function (it) {
123
- return stringSlice$5(toString$b(it), 8, -1);
123
+ return stringSlice$7(toString$c(it), 8, -1);
124
124
  };
125
125
 
126
- var uncurryThis$k = functionUncurryThis;
127
- var fails$h = fails$k;
126
+ var uncurryThis$m = functionUncurryThis;
127
+ var fails$i = fails$l;
128
128
  var classof$6 = classofRaw$1;
129
129
 
130
130
  var $Object$3 = Object;
131
- var split = uncurryThis$k(''.split);
131
+ var split = uncurryThis$m(''.split);
132
132
 
133
133
  // fallback for non-array-like ES3 and non-enumerable old V8 strings
134
- var indexedObject = fails$h(function () {
134
+ var indexedObject = fails$i(function () {
135
135
  // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
136
136
  // eslint-disable-next-line no-prototype-builtins -- safe
137
137
  return !$Object$3('z').propertyIsEnumerable(0);
@@ -143,45 +143,45 @@ var $TypeError$9 = TypeError;
143
143
 
144
144
  // `RequireObjectCoercible` abstract operation
145
145
  // https://tc39.es/ecma262/#sec-requireobjectcoercible
146
- var requireObjectCoercible$8 = function (it) {
146
+ var requireObjectCoercible$9 = function (it) {
147
147
  if (it == undefined) throw $TypeError$9("Can't call method on " + it);
148
148
  return it;
149
149
  };
150
150
 
151
151
  // toObject with fallback for non-array-like ES3 strings
152
152
  var IndexedObject = indexedObject;
153
- var requireObjectCoercible$7 = requireObjectCoercible$8;
153
+ var requireObjectCoercible$8 = requireObjectCoercible$9;
154
154
 
155
155
  var toIndexedObject$4 = function (it) {
156
- return IndexedObject(requireObjectCoercible$7(it));
156
+ return IndexedObject(requireObjectCoercible$8(it));
157
157
  };
158
158
 
159
159
  // `IsCallable` abstract operation
160
160
  // https://tc39.es/ecma262/#sec-iscallable
161
- var isCallable$f = function (argument) {
161
+ var isCallable$g = function (argument) {
162
162
  return typeof argument == 'function';
163
163
  };
164
164
 
165
- var isCallable$e = isCallable$f;
165
+ var isCallable$f = isCallable$g;
166
166
 
167
167
  var isObject$7 = function (it) {
168
- return typeof it == 'object' ? it !== null : isCallable$e(it);
168
+ return typeof it == 'object' ? it !== null : isCallable$f(it);
169
169
  };
170
170
 
171
171
  var global$d = global$e;
172
- var isCallable$d = isCallable$f;
172
+ var isCallable$e = isCallable$g;
173
173
 
174
174
  var aFunction = function (argument) {
175
- return isCallable$d(argument) ? argument : undefined;
175
+ return isCallable$e(argument) ? argument : undefined;
176
176
  };
177
177
 
178
178
  var getBuiltIn$6 = function (namespace, method) {
179
179
  return arguments.length < 2 ? aFunction(global$d[namespace]) : global$d[namespace] && global$d[namespace][method];
180
180
  };
181
181
 
182
- var uncurryThis$j = functionUncurryThis;
182
+ var uncurryThis$l = functionUncurryThis;
183
183
 
184
- var objectIsPrototypeOf = uncurryThis$j({}.isPrototypeOf);
184
+ var objectIsPrototypeOf = uncurryThis$l({}.isPrototypeOf);
185
185
 
186
186
  var getBuiltIn$5 = getBuiltIn$6;
187
187
 
@@ -218,10 +218,10 @@ var engineV8Version = version;
218
218
  /* eslint-disable es-x/no-symbol -- required for testing */
219
219
 
220
220
  var V8_VERSION = engineV8Version;
221
- var fails$g = fails$k;
221
+ var fails$h = fails$l;
222
222
 
223
223
  // eslint-disable-next-line es-x/no-object-getownpropertysymbols -- required for testing
224
- var nativeSymbol = !!Object.getOwnPropertySymbols && !fails$g(function () {
224
+ var nativeSymbol = !!Object.getOwnPropertySymbols && !fails$h(function () {
225
225
  var symbol = Symbol();
226
226
  // Chrome 38 Symbol has incorrect toString conversion
227
227
  // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
@@ -239,7 +239,7 @@ var useSymbolAsUid = NATIVE_SYMBOL$3
239
239
  && typeof Symbol.iterator == 'symbol';
240
240
 
241
241
  var getBuiltIn$4 = getBuiltIn$6;
242
- var isCallable$c = isCallable$f;
242
+ var isCallable$d = isCallable$g;
243
243
  var isPrototypeOf$2 = objectIsPrototypeOf;
244
244
  var USE_SYMBOL_AS_UID$1 = useSymbolAsUid;
245
245
 
@@ -249,7 +249,7 @@ var isSymbol$3 = USE_SYMBOL_AS_UID$1 ? function (it) {
249
249
  return typeof it == 'symbol';
250
250
  } : function (it) {
251
251
  var $Symbol = getBuiltIn$4('Symbol');
252
- return isCallable$c($Symbol) && isPrototypeOf$2($Symbol.prototype, $Object$2(it));
252
+ return isCallable$d($Symbol) && isPrototypeOf$2($Symbol.prototype, $Object$2(it));
253
253
  };
254
254
 
255
255
  var $String$2 = String;
@@ -262,14 +262,14 @@ var tryToString$3 = function (argument) {
262
262
  }
263
263
  };
264
264
 
265
- var isCallable$b = isCallable$f;
265
+ var isCallable$c = isCallable$g;
266
266
  var tryToString$2 = tryToString$3;
267
267
 
268
268
  var $TypeError$8 = TypeError;
269
269
 
270
270
  // `Assert: IsCallable(argument) is true`
271
271
  var aCallable$2 = function (argument) {
272
- if (isCallable$b(argument)) return argument;
272
+ if (isCallable$c(argument)) return argument;
273
273
  throw $TypeError$8(tryToString$2(argument) + ' is not a function');
274
274
  };
275
275
 
@@ -277,13 +277,13 @@ var aCallable$1 = aCallable$2;
277
277
 
278
278
  // `GetMethod` abstract operation
279
279
  // https://tc39.es/ecma262/#sec-getmethod
280
- var getMethod$2 = function (V, P) {
280
+ var getMethod$3 = function (V, P) {
281
281
  var func = V[P];
282
282
  return func == null ? undefined : aCallable$1(func);
283
283
  };
284
284
 
285
- var call$8 = functionCall;
286
- var isCallable$a = isCallable$f;
285
+ var call$9 = functionCall;
286
+ var isCallable$b = isCallable$g;
287
287
  var isObject$6 = isObject$7;
288
288
 
289
289
  var $TypeError$7 = TypeError;
@@ -292,9 +292,9 @@ var $TypeError$7 = TypeError;
292
292
  // https://tc39.es/ecma262/#sec-ordinarytoprimitive
293
293
  var ordinaryToPrimitive$1 = function (input, pref) {
294
294
  var fn, val;
295
- if (pref === 'string' && isCallable$a(fn = input.toString) && !isObject$6(val = call$8(fn, input))) return val;
296
- if (isCallable$a(fn = input.valueOf) && !isObject$6(val = call$8(fn, input))) return val;
297
- if (pref !== 'string' && isCallable$a(fn = input.toString) && !isObject$6(val = call$8(fn, input))) return val;
295
+ if (pref === 'string' && isCallable$b(fn = input.toString) && !isObject$6(val = call$9(fn, input))) return val;
296
+ if (isCallable$b(fn = input.valueOf) && !isObject$6(val = call$9(fn, input))) return val;
297
+ if (pref !== 'string' && isCallable$b(fn = input.toString) && !isObject$6(val = call$9(fn, input))) return val;
298
298
  throw $TypeError$7("Can't convert object to primitive value");
299
299
  };
300
300
 
@@ -333,36 +333,36 @@ var store$2 = sharedStore;
333
333
  source: 'https://github.com/zloirock/core-js'
334
334
  });
335
335
 
336
- var requireObjectCoercible$6 = requireObjectCoercible$8;
336
+ var requireObjectCoercible$7 = requireObjectCoercible$9;
337
337
 
338
338
  var $Object$1 = Object;
339
339
 
340
340
  // `ToObject` abstract operation
341
341
  // https://tc39.es/ecma262/#sec-toobject
342
- var toObject$2 = function (argument) {
343
- return $Object$1(requireObjectCoercible$6(argument));
342
+ var toObject$3 = function (argument) {
343
+ return $Object$1(requireObjectCoercible$7(argument));
344
344
  };
345
345
 
346
- var uncurryThis$i = functionUncurryThis;
347
- var toObject$1 = toObject$2;
346
+ var uncurryThis$k = functionUncurryThis;
347
+ var toObject$2 = toObject$3;
348
348
 
349
- var hasOwnProperty = uncurryThis$i({}.hasOwnProperty);
349
+ var hasOwnProperty = uncurryThis$k({}.hasOwnProperty);
350
350
 
351
351
  // `HasOwnProperty` abstract operation
352
352
  // https://tc39.es/ecma262/#sec-hasownproperty
353
353
  // eslint-disable-next-line es-x/no-object-hasown -- safe
354
354
  var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
355
- return hasOwnProperty(toObject$1(it), key);
355
+ return hasOwnProperty(toObject$2(it), key);
356
356
  };
357
357
 
358
- var uncurryThis$h = functionUncurryThis;
358
+ var uncurryThis$j = functionUncurryThis;
359
359
 
360
360
  var id = 0;
361
361
  var postfix = Math.random();
362
- var toString$a = uncurryThis$h(1.0.toString);
362
+ var toString$b = uncurryThis$j(1.0.toString);
363
363
 
364
364
  var uid$2 = function (key) {
365
- return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$a(++id + postfix, 36);
365
+ return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$b(++id + postfix, 36);
366
366
  };
367
367
 
368
368
  var global$9 = global$e;
@@ -377,7 +377,7 @@ var Symbol$1 = global$9.Symbol;
377
377
  var symbolFor = Symbol$1 && Symbol$1['for'];
378
378
  var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid$1;
379
379
 
380
- var wellKnownSymbol$8 = function (name) {
380
+ var wellKnownSymbol$9 = function (name) {
381
381
  if (!hasOwn$8(WellKnownSymbolsStore, name) || !(NATIVE_SYMBOL$2 || typeof WellKnownSymbolsStore[name] == 'string')) {
382
382
  var description = 'Symbol.' + name;
383
383
  if (NATIVE_SYMBOL$2 && hasOwn$8(Symbol$1, name)) {
@@ -390,25 +390,25 @@ var wellKnownSymbol$8 = function (name) {
390
390
  } return WellKnownSymbolsStore[name];
391
391
  };
392
392
 
393
- var call$7 = functionCall;
393
+ var call$8 = functionCall;
394
394
  var isObject$5 = isObject$7;
395
395
  var isSymbol$2 = isSymbol$3;
396
- var getMethod$1 = getMethod$2;
396
+ var getMethod$2 = getMethod$3;
397
397
  var ordinaryToPrimitive = ordinaryToPrimitive$1;
398
- var wellKnownSymbol$7 = wellKnownSymbol$8;
398
+ var wellKnownSymbol$8 = wellKnownSymbol$9;
399
399
 
400
400
  var $TypeError$6 = TypeError;
401
- var TO_PRIMITIVE = wellKnownSymbol$7('toPrimitive');
401
+ var TO_PRIMITIVE = wellKnownSymbol$8('toPrimitive');
402
402
 
403
403
  // `ToPrimitive` abstract operation
404
404
  // https://tc39.es/ecma262/#sec-toprimitive
405
405
  var toPrimitive$1 = function (input, pref) {
406
406
  if (!isObject$5(input) || isSymbol$2(input)) return input;
407
- var exoticToPrim = getMethod$1(input, TO_PRIMITIVE);
407
+ var exoticToPrim = getMethod$2(input, TO_PRIMITIVE);
408
408
  var result;
409
409
  if (exoticToPrim) {
410
410
  if (pref === undefined) pref = 'default';
411
- result = call$7(exoticToPrim, input, pref);
411
+ result = call$8(exoticToPrim, input, pref);
412
412
  if (!isObject$5(result) || isSymbol$2(result)) return result;
413
413
  throw $TypeError$6("Can't convert object to primitive value");
414
414
  }
@@ -438,11 +438,11 @@ var documentCreateElement$1 = function (it) {
438
438
  };
439
439
 
440
440
  var DESCRIPTORS$8 = descriptors;
441
- var fails$f = fails$k;
441
+ var fails$g = fails$l;
442
442
  var createElement = documentCreateElement$1;
443
443
 
444
444
  // Thanks to IE8 for its funny defineProperty
445
- var ie8DomDefine = !DESCRIPTORS$8 && !fails$f(function () {
445
+ var ie8DomDefine = !DESCRIPTORS$8 && !fails$g(function () {
446
446
  // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
447
447
  return Object.defineProperty(createElement('div'), 'a', {
448
448
  get: function () { return 7; }
@@ -450,7 +450,7 @@ var ie8DomDefine = !DESCRIPTORS$8 && !fails$f(function () {
450
450
  });
451
451
 
452
452
  var DESCRIPTORS$7 = descriptors;
453
- var call$6 = functionCall;
453
+ var call$7 = functionCall;
454
454
  var propertyIsEnumerableModule = objectPropertyIsEnumerable;
455
455
  var createPropertyDescriptor$2 = createPropertyDescriptor$3;
456
456
  var toIndexedObject$3 = toIndexedObject$4;
@@ -469,17 +469,17 @@ objectGetOwnPropertyDescriptor.f = DESCRIPTORS$7 ? $getOwnPropertyDescriptor$1 :
469
469
  if (IE8_DOM_DEFINE$1) try {
470
470
  return $getOwnPropertyDescriptor$1(O, P);
471
471
  } catch (error) { /* empty */ }
472
- if (hasOwn$7(O, P)) return createPropertyDescriptor$2(!call$6(propertyIsEnumerableModule.f, O, P), O[P]);
472
+ if (hasOwn$7(O, P)) return createPropertyDescriptor$2(!call$7(propertyIsEnumerableModule.f, O, P), O[P]);
473
473
  };
474
474
 
475
475
  var objectDefineProperty = {};
476
476
 
477
477
  var DESCRIPTORS$6 = descriptors;
478
- var fails$e = fails$k;
478
+ var fails$f = fails$l;
479
479
 
480
480
  // V8 ~ Chrome 36-
481
481
  // https://bugs.chromium.org/p/v8/issues/detail?id=3334
482
- var v8PrototypeDefineBug = DESCRIPTORS$6 && fails$e(function () {
482
+ var v8PrototypeDefineBug = DESCRIPTORS$6 && fails$f(function () {
483
483
  // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
484
484
  return Object.defineProperty(function () { /* empty */ }, 'prototype', {
485
485
  value: 42,
@@ -493,7 +493,7 @@ var $String$1 = String;
493
493
  var $TypeError$5 = TypeError;
494
494
 
495
495
  // `Assert: Type(argument) is Object`
496
- var anObject$9 = function (argument) {
496
+ var anObject$a = function (argument) {
497
497
  if (isObject$3(argument)) return argument;
498
498
  throw $TypeError$5($String$1(argument) + ' is not an object');
499
499
  };
@@ -501,7 +501,7 @@ var anObject$9 = function (argument) {
501
501
  var DESCRIPTORS$5 = descriptors;
502
502
  var IE8_DOM_DEFINE = ie8DomDefine;
503
503
  var V8_PROTOTYPE_DEFINE_BUG$1 = v8PrototypeDefineBug;
504
- var anObject$8 = anObject$9;
504
+ var anObject$9 = anObject$a;
505
505
  var toPropertyKey$1 = toPropertyKey$3;
506
506
 
507
507
  var $TypeError$4 = TypeError;
@@ -516,9 +516,9 @@ var WRITABLE = 'writable';
516
516
  // `Object.defineProperty` method
517
517
  // https://tc39.es/ecma262/#sec-object.defineproperty
518
518
  objectDefineProperty.f = DESCRIPTORS$5 ? V8_PROTOTYPE_DEFINE_BUG$1 ? function defineProperty(O, P, Attributes) {
519
- anObject$8(O);
519
+ anObject$9(O);
520
520
  P = toPropertyKey$1(P);
521
- anObject$8(Attributes);
521
+ anObject$9(Attributes);
522
522
  if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {
523
523
  var current = $getOwnPropertyDescriptor(O, P);
524
524
  if (current && current[WRITABLE]) {
@@ -531,9 +531,9 @@ objectDefineProperty.f = DESCRIPTORS$5 ? V8_PROTOTYPE_DEFINE_BUG$1 ? function de
531
531
  }
532
532
  } return $defineProperty(O, P, Attributes);
533
533
  } : $defineProperty : function defineProperty(O, P, Attributes) {
534
- anObject$8(O);
534
+ anObject$9(O);
535
535
  P = toPropertyKey$1(P);
536
- anObject$8(Attributes);
536
+ anObject$9(Attributes);
537
537
  if (IE8_DOM_DEFINE) try {
538
538
  return $defineProperty(O, P, Attributes);
539
539
  } catch (error) { /* empty */ }
@@ -573,14 +573,14 @@ var functionName = {
573
573
  CONFIGURABLE: CONFIGURABLE
574
574
  };
575
575
 
576
- var uncurryThis$g = functionUncurryThis;
577
- var isCallable$9 = isCallable$f;
576
+ var uncurryThis$i = functionUncurryThis;
577
+ var isCallable$a = isCallable$g;
578
578
  var store$1 = sharedStore;
579
579
 
580
- var functionToString = uncurryThis$g(Function.toString);
580
+ var functionToString = uncurryThis$i(Function.toString);
581
581
 
582
582
  // this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
583
- if (!isCallable$9(store$1.inspectSource)) {
583
+ if (!isCallable$a(store$1.inspectSource)) {
584
584
  store$1.inspectSource = function (it) {
585
585
  return functionToString(it);
586
586
  };
@@ -589,12 +589,12 @@ if (!isCallable$9(store$1.inspectSource)) {
589
589
  var inspectSource$3 = store$1.inspectSource;
590
590
 
591
591
  var global$7 = global$e;
592
- var isCallable$8 = isCallable$f;
592
+ var isCallable$9 = isCallable$g;
593
593
  var inspectSource$2 = inspectSource$3;
594
594
 
595
595
  var WeakMap$2 = global$7.WeakMap;
596
596
 
597
- var nativeWeakMap = isCallable$8(WeakMap$2) && /native code/.test(inspectSource$2(WeakMap$2));
597
+ var nativeWeakMap = isCallable$9(WeakMap$2) && /native code/.test(inspectSource$2(WeakMap$2));
598
598
 
599
599
  var shared$2 = shared$4.exports;
600
600
  var uid = uid$2;
@@ -609,7 +609,7 @@ var hiddenKeys$4 = {};
609
609
 
610
610
  var NATIVE_WEAK_MAP = nativeWeakMap;
611
611
  var global$6 = global$e;
612
- var uncurryThis$f = functionUncurryThis;
612
+ var uncurryThis$h = functionUncurryThis;
613
613
  var isObject$2 = isObject$7;
614
614
  var createNonEnumerableProperty$2 = createNonEnumerableProperty$3;
615
615
  var hasOwn$5 = hasOwnProperty_1;
@@ -637,9 +637,9 @@ var getterFor = function (TYPE) {
637
637
 
638
638
  if (NATIVE_WEAK_MAP || shared$1.state) {
639
639
  var store = shared$1.state || (shared$1.state = new WeakMap$1());
640
- var wmget = uncurryThis$f(store.get);
641
- var wmhas = uncurryThis$f(store.has);
642
- var wmset = uncurryThis$f(store.set);
640
+ var wmget = uncurryThis$h(store.get);
641
+ var wmhas = uncurryThis$h(store.has);
642
+ var wmset = uncurryThis$h(store.set);
643
643
  set = function (it, metadata) {
644
644
  if (wmhas(store, it)) throw new TypeError$1(OBJECT_ALREADY_INITIALIZED);
645
645
  metadata.facade = it;
@@ -677,8 +677,8 @@ var internalState = {
677
677
  getterFor: getterFor
678
678
  };
679
679
 
680
- var fails$d = fails$k;
681
- var isCallable$7 = isCallable$f;
680
+ var fails$e = fails$l;
681
+ var isCallable$8 = isCallable$g;
682
682
  var hasOwn$4 = hasOwnProperty_1;
683
683
  var DESCRIPTORS$2 = descriptors;
684
684
  var CONFIGURABLE_FUNCTION_NAME = functionName.CONFIGURABLE;
@@ -690,7 +690,7 @@ var getInternalState$1 = InternalStateModule.get;
690
690
  // eslint-disable-next-line es-x/no-object-defineproperty -- safe
691
691
  var defineProperty$2 = Object.defineProperty;
692
692
 
693
- var CONFIGURABLE_LENGTH = DESCRIPTORS$2 && !fails$d(function () {
693
+ var CONFIGURABLE_LENGTH = DESCRIPTORS$2 && !fails$e(function () {
694
694
  return defineProperty$2(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
695
695
  });
696
696
 
@@ -724,10 +724,10 @@ var makeBuiltIn$1 = makeBuiltIn$2.exports = function (value, name, options) {
724
724
  // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
725
725
  // eslint-disable-next-line no-extend-native -- required
726
726
  Function.prototype.toString = makeBuiltIn$1(function toString() {
727
- return isCallable$7(this) && getInternalState$1(this).source || inspectSource$1(this);
727
+ return isCallable$8(this) && getInternalState$1(this).source || inspectSource$1(this);
728
728
  }, 'toString');
729
729
 
730
- var isCallable$6 = isCallable$f;
730
+ var isCallable$7 = isCallable$g;
731
731
  var definePropertyModule$3 = objectDefineProperty;
732
732
  var makeBuiltIn = makeBuiltIn$2.exports;
733
733
  var defineGlobalProperty$1 = defineGlobalProperty$3;
@@ -736,7 +736,7 @@ var defineBuiltIn$3 = function (O, key, value, options) {
736
736
  if (!options) options = {};
737
737
  var simple = options.enumerable;
738
738
  var name = options.name !== undefined ? options.name : key;
739
- if (isCallable$6(value)) makeBuiltIn(value, name, options);
739
+ if (isCallable$7(value)) makeBuiltIn(value, name, options);
740
740
  if (options.global) {
741
741
  if (simple) O[key] = value;
742
742
  else defineGlobalProperty$1(key, value);
@@ -758,55 +758,55 @@ var defineBuiltIn$3 = function (O, key, value, options) {
758
758
  var objectGetOwnPropertyNames = {};
759
759
 
760
760
  var ceil = Math.ceil;
761
- var floor$1 = Math.floor;
761
+ var floor$2 = Math.floor;
762
762
 
763
763
  // `Math.trunc` method
764
764
  // https://tc39.es/ecma262/#sec-math.trunc
765
765
  // eslint-disable-next-line es-x/no-math-trunc -- safe
766
766
  var mathTrunc = Math.trunc || function trunc(x) {
767
767
  var n = +x;
768
- return (n > 0 ? floor$1 : ceil)(n);
768
+ return (n > 0 ? floor$2 : ceil)(n);
769
769
  };
770
770
 
771
771
  var trunc = mathTrunc;
772
772
 
773
773
  // `ToIntegerOrInfinity` abstract operation
774
774
  // https://tc39.es/ecma262/#sec-tointegerorinfinity
775
- var toIntegerOrInfinity$3 = function (argument) {
775
+ var toIntegerOrInfinity$4 = function (argument) {
776
776
  var number = +argument;
777
777
  // eslint-disable-next-line no-self-compare -- NaN check
778
778
  return number !== number || number === 0 ? 0 : trunc(number);
779
779
  };
780
780
 
781
- var toIntegerOrInfinity$2 = toIntegerOrInfinity$3;
781
+ var toIntegerOrInfinity$3 = toIntegerOrInfinity$4;
782
782
 
783
- var max$3 = Math.max;
784
- var min$6 = Math.min;
783
+ var max$4 = Math.max;
784
+ var min$7 = Math.min;
785
785
 
786
786
  // Helper for a popular repeating case of the spec:
787
787
  // Let integer be ? ToInteger(index).
788
788
  // If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
789
789
  var toAbsoluteIndex$2 = function (index, length) {
790
- var integer = toIntegerOrInfinity$2(index);
791
- return integer < 0 ? max$3(integer + length, 0) : min$6(integer, length);
790
+ var integer = toIntegerOrInfinity$3(index);
791
+ return integer < 0 ? max$4(integer + length, 0) : min$7(integer, length);
792
792
  };
793
793
 
794
- var toIntegerOrInfinity$1 = toIntegerOrInfinity$3;
794
+ var toIntegerOrInfinity$2 = toIntegerOrInfinity$4;
795
795
 
796
- var min$5 = Math.min;
796
+ var min$6 = Math.min;
797
797
 
798
798
  // `ToLength` abstract operation
799
799
  // https://tc39.es/ecma262/#sec-tolength
800
- var toLength$4 = function (argument) {
801
- return argument > 0 ? min$5(toIntegerOrInfinity$1(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
800
+ var toLength$5 = function (argument) {
801
+ return argument > 0 ? min$6(toIntegerOrInfinity$2(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
802
802
  };
803
803
 
804
- var toLength$3 = toLength$4;
804
+ var toLength$4 = toLength$5;
805
805
 
806
806
  // `LengthOfArrayLike` abstract operation
807
807
  // https://tc39.es/ecma262/#sec-lengthofarraylike
808
808
  var lengthOfArrayLike$3 = function (obj) {
809
- return toLength$3(obj.length);
809
+ return toLength$4(obj.length);
810
810
  };
811
811
 
812
812
  var toIndexedObject$2 = toIndexedObject$4;
@@ -842,23 +842,23 @@ var arrayIncludes = {
842
842
  indexOf: createMethod$2(false)
843
843
  };
844
844
 
845
- var uncurryThis$e = functionUncurryThis;
845
+ var uncurryThis$g = functionUncurryThis;
846
846
  var hasOwn$3 = hasOwnProperty_1;
847
847
  var toIndexedObject$1 = toIndexedObject$4;
848
848
  var indexOf$1 = arrayIncludes.indexOf;
849
849
  var hiddenKeys$2 = hiddenKeys$4;
850
850
 
851
- var push$2 = uncurryThis$e([].push);
851
+ var push$3 = uncurryThis$g([].push);
852
852
 
853
853
  var objectKeysInternal = function (object, names) {
854
854
  var O = toIndexedObject$1(object);
855
855
  var i = 0;
856
856
  var result = [];
857
857
  var key;
858
- for (key in O) !hasOwn$3(hiddenKeys$2, key) && hasOwn$3(O, key) && push$2(result, key);
858
+ for (key in O) !hasOwn$3(hiddenKeys$2, key) && hasOwn$3(O, key) && push$3(result, key);
859
859
  // Don't enum bug & hidden keys
860
860
  while (names.length > i) if (hasOwn$3(O, key = names[i++])) {
861
- ~indexOf$1(result, key) || push$2(result, key);
861
+ ~indexOf$1(result, key) || push$3(result, key);
862
862
  }
863
863
  return result;
864
864
  };
@@ -892,18 +892,18 @@ var objectGetOwnPropertySymbols = {};
892
892
  objectGetOwnPropertySymbols.f = Object.getOwnPropertySymbols;
893
893
 
894
894
  var getBuiltIn$3 = getBuiltIn$6;
895
- var uncurryThis$d = functionUncurryThis;
895
+ var uncurryThis$f = functionUncurryThis;
896
896
  var getOwnPropertyNamesModule = objectGetOwnPropertyNames;
897
897
  var getOwnPropertySymbolsModule = objectGetOwnPropertySymbols;
898
- var anObject$7 = anObject$9;
898
+ var anObject$8 = anObject$a;
899
899
 
900
- var concat = uncurryThis$d([].concat);
900
+ var concat$1 = uncurryThis$f([].concat);
901
901
 
902
902
  // all object keys, includes non-enumerable and symbols
903
903
  var ownKeys$8 = getBuiltIn$3('Reflect', 'ownKeys') || function ownKeys(it) {
904
- var keys = getOwnPropertyNamesModule.f(anObject$7(it));
904
+ var keys = getOwnPropertyNamesModule.f(anObject$8(it));
905
905
  var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
906
- return getOwnPropertySymbols ? concat(keys, getOwnPropertySymbols(it)) : keys;
906
+ return getOwnPropertySymbols ? concat$1(keys, getOwnPropertySymbols(it)) : keys;
907
907
  };
908
908
 
909
909
  var hasOwn$2 = hasOwnProperty_1;
@@ -923,8 +923,8 @@ var copyConstructorProperties$2 = function (target, source, exceptions) {
923
923
  }
924
924
  };
925
925
 
926
- var fails$c = fails$k;
927
- var isCallable$5 = isCallable$f;
926
+ var fails$d = fails$l;
927
+ var isCallable$6 = isCallable$g;
928
928
 
929
929
  var replacement = /#|\.prototype\./;
930
930
 
@@ -932,7 +932,7 @@ var isForced$1 = function (feature, detection) {
932
932
  var value = data[normalize(feature)];
933
933
  return value == POLYFILL ? true
934
934
  : value == NATIVE ? false
935
- : isCallable$5(detection) ? fails$c(detection)
935
+ : isCallable$6(detection) ? fails$d(detection)
936
936
  : !!detection;
937
937
  };
938
938
 
@@ -1001,9 +1001,9 @@ var _export = function (options, source) {
1001
1001
  }
1002
1002
  };
1003
1003
 
1004
- var wellKnownSymbol$6 = wellKnownSymbol$8;
1004
+ var wellKnownSymbol$7 = wellKnownSymbol$9;
1005
1005
 
1006
- var TO_STRING_TAG$1 = wellKnownSymbol$6('toStringTag');
1006
+ var TO_STRING_TAG$1 = wellKnownSymbol$7('toStringTag');
1007
1007
  var test$1 = {};
1008
1008
 
1009
1009
  test$1[TO_STRING_TAG$1] = 'z';
@@ -1011,11 +1011,11 @@ test$1[TO_STRING_TAG$1] = 'z';
1011
1011
  var toStringTagSupport = String(test$1) === '[object z]';
1012
1012
 
1013
1013
  var TO_STRING_TAG_SUPPORT = toStringTagSupport;
1014
- var isCallable$4 = isCallable$f;
1014
+ var isCallable$5 = isCallable$g;
1015
1015
  var classofRaw = classofRaw$1;
1016
- var wellKnownSymbol$5 = wellKnownSymbol$8;
1016
+ var wellKnownSymbol$6 = wellKnownSymbol$9;
1017
1017
 
1018
- var TO_STRING_TAG = wellKnownSymbol$5('toStringTag');
1018
+ var TO_STRING_TAG = wellKnownSymbol$6('toStringTag');
1019
1019
  var $Object = Object;
1020
1020
 
1021
1021
  // ES3 wrong here
@@ -1037,23 +1037,23 @@ var classof$5 = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
1037
1037
  // builtinTag case
1038
1038
  : CORRECT_ARGUMENTS ? classofRaw(O)
1039
1039
  // ES3 arguments fallback
1040
- : (result = classofRaw(O)) == 'Object' && isCallable$4(O.callee) ? 'Arguments' : result;
1040
+ : (result = classofRaw(O)) == 'Object' && isCallable$5(O.callee) ? 'Arguments' : result;
1041
1041
  };
1042
1042
 
1043
1043
  var classof$4 = classof$5;
1044
1044
 
1045
1045
  var $String = String;
1046
1046
 
1047
- var toString$9 = function (argument) {
1047
+ var toString$a = function (argument) {
1048
1048
  if (classof$4(argument) === 'Symbol') throw TypeError('Cannot convert a Symbol value to a string');
1049
1049
  return $String(argument);
1050
1050
  };
1051
1051
 
1052
1052
  var isObject$1 = isObject$7;
1053
1053
  var classof$3 = classofRaw$1;
1054
- var wellKnownSymbol$4 = wellKnownSymbol$8;
1054
+ var wellKnownSymbol$5 = wellKnownSymbol$9;
1055
1055
 
1056
- var MATCH$1 = wellKnownSymbol$4('match');
1056
+ var MATCH$1 = wellKnownSymbol$5('match');
1057
1057
 
1058
1058
  // `IsRegExp` abstract operation
1059
1059
  // https://tc39.es/ecma262/#sec-isregexp
@@ -1072,9 +1072,9 @@ var notARegexp = function (it) {
1072
1072
  } return it;
1073
1073
  };
1074
1074
 
1075
- var wellKnownSymbol$3 = wellKnownSymbol$8;
1075
+ var wellKnownSymbol$4 = wellKnownSymbol$9;
1076
1076
 
1077
- var MATCH = wellKnownSymbol$3('match');
1077
+ var MATCH = wellKnownSymbol$4('match');
1078
1078
 
1079
1079
  var correctIsRegexpLogic = function (METHOD_NAME) {
1080
1080
  var regexp = /./;
@@ -1089,18 +1089,18 @@ var correctIsRegexpLogic = function (METHOD_NAME) {
1089
1089
  };
1090
1090
 
1091
1091
  var $$8 = _export;
1092
- var uncurryThis$c = functionUncurryThis;
1092
+ var uncurryThis$e = functionUncurryThis;
1093
1093
  var getOwnPropertyDescriptor$1 = objectGetOwnPropertyDescriptor.f;
1094
- var toLength$2 = toLength$4;
1095
- var toString$8 = toString$9;
1094
+ var toLength$3 = toLength$5;
1095
+ var toString$9 = toString$a;
1096
1096
  var notARegExp$2 = notARegexp;
1097
- var requireObjectCoercible$5 = requireObjectCoercible$8;
1097
+ var requireObjectCoercible$6 = requireObjectCoercible$9;
1098
1098
  var correctIsRegExpLogic$2 = correctIsRegexpLogic;
1099
1099
 
1100
1100
  // eslint-disable-next-line es-x/no-string-prototype-endswith -- safe
1101
- var un$EndsWith = uncurryThis$c(''.endsWith);
1102
- var slice = uncurryThis$c(''.slice);
1103
- var min$4 = Math.min;
1101
+ var un$EndsWith = uncurryThis$e(''.endsWith);
1102
+ var slice = uncurryThis$e(''.slice);
1103
+ var min$5 = Math.min;
1104
1104
 
1105
1105
  var CORRECT_IS_REGEXP_LOGIC$1 = correctIsRegExpLogic$2('endsWith');
1106
1106
  // https://github.com/zloirock/core-js/pull/702
@@ -1113,12 +1113,12 @@ var MDN_POLYFILL_BUG$1 = !CORRECT_IS_REGEXP_LOGIC$1 && !!function () {
1113
1113
  // https://tc39.es/ecma262/#sec-string.prototype.endswith
1114
1114
  $$8({ target: 'String', proto: true, forced: !MDN_POLYFILL_BUG$1 && !CORRECT_IS_REGEXP_LOGIC$1 }, {
1115
1115
  endsWith: function endsWith(searchString /* , endPosition = @length */) {
1116
- var that = toString$8(requireObjectCoercible$5(this));
1116
+ var that = toString$9(requireObjectCoercible$6(this));
1117
1117
  notARegExp$2(searchString);
1118
1118
  var endPosition = arguments.length > 1 ? arguments[1] : undefined;
1119
1119
  var len = that.length;
1120
- var end = endPosition === undefined ? len : min$4(toLength$2(endPosition), len);
1121
- var search = toString$8(searchString);
1120
+ var end = endPosition === undefined ? len : min$5(toLength$3(endPosition), len);
1121
+ var search = toString$9(searchString);
1122
1122
  return un$EndsWith
1123
1123
  ? un$EndsWith(that, search, end)
1124
1124
  : slice(that, end - search.length, end) === search;
@@ -1140,7 +1140,7 @@ var objectKeys$1 = Object.keys || function keys(O) {
1140
1140
  var DESCRIPTORS$1 = descriptors;
1141
1141
  var V8_PROTOTYPE_DEFINE_BUG = v8PrototypeDefineBug;
1142
1142
  var definePropertyModule$1 = objectDefineProperty;
1143
- var anObject$6 = anObject$9;
1143
+ var anObject$7 = anObject$a;
1144
1144
  var toIndexedObject = toIndexedObject$4;
1145
1145
  var objectKeys = objectKeys$1;
1146
1146
 
@@ -1148,7 +1148,7 @@ var objectKeys = objectKeys$1;
1148
1148
  // https://tc39.es/ecma262/#sec-object.defineproperties
1149
1149
  // eslint-disable-next-line es-x/no-object-defineproperties -- safe
1150
1150
  objectDefineProperties.f = DESCRIPTORS$1 && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
1151
- anObject$6(O);
1151
+ anObject$7(O);
1152
1152
  var props = toIndexedObject(Properties);
1153
1153
  var keys = objectKeys(Properties);
1154
1154
  var length = keys.length;
@@ -1164,7 +1164,7 @@ var html$1 = getBuiltIn$2('document', 'documentElement');
1164
1164
 
1165
1165
  /* global ActiveXObject -- old IE, WSH */
1166
1166
 
1167
- var anObject$5 = anObject$9;
1167
+ var anObject$6 = anObject$a;
1168
1168
  var definePropertiesModule = objectDefineProperties;
1169
1169
  var enumBugKeys = enumBugKeys$3;
1170
1170
  var hiddenKeys = hiddenKeys$4;
@@ -1238,7 +1238,7 @@ hiddenKeys[IE_PROTO] = true;
1238
1238
  var objectCreate = Object.create || function create(O, Properties) {
1239
1239
  var result;
1240
1240
  if (O !== null) {
1241
- EmptyConstructor[PROTOTYPE] = anObject$5(O);
1241
+ EmptyConstructor[PROTOTYPE] = anObject$6(O);
1242
1242
  result = new EmptyConstructor();
1243
1243
  EmptyConstructor[PROTOTYPE] = null;
1244
1244
  // add "__proto__" for Object.getPrototypeOf polyfill
@@ -1247,11 +1247,11 @@ var objectCreate = Object.create || function create(O, Properties) {
1247
1247
  return Properties === undefined ? result : definePropertiesModule.f(result, Properties);
1248
1248
  };
1249
1249
 
1250
- var wellKnownSymbol$2 = wellKnownSymbol$8;
1250
+ var wellKnownSymbol$3 = wellKnownSymbol$9;
1251
1251
  var create$1 = objectCreate;
1252
1252
  var defineProperty$1 = objectDefineProperty.f;
1253
1253
 
1254
- var UNSCOPABLES = wellKnownSymbol$2('unscopables');
1254
+ var UNSCOPABLES = wellKnownSymbol$3('unscopables');
1255
1255
  var ArrayPrototype = Array.prototype;
1256
1256
 
1257
1257
  // Array.prototype[@@unscopables]
@@ -1270,11 +1270,11 @@ var addToUnscopables$1 = function (key) {
1270
1270
 
1271
1271
  var $$7 = _export;
1272
1272
  var $includes = arrayIncludes.includes;
1273
- var fails$b = fails$k;
1273
+ var fails$c = fails$l;
1274
1274
  var addToUnscopables = addToUnscopables$1;
1275
1275
 
1276
1276
  // FF99+ bug
1277
- var BROKEN_ON_SPARSE = fails$b(function () {
1277
+ var BROKEN_ON_SPARSE = fails$c(function () {
1278
1278
  return !Array(1).includes();
1279
1279
  });
1280
1280
 
@@ -1290,32 +1290,32 @@ $$7({ target: 'Array', proto: true, forced: BROKEN_ON_SPARSE }, {
1290
1290
  addToUnscopables('includes');
1291
1291
 
1292
1292
  var $$6 = _export;
1293
- var uncurryThis$b = functionUncurryThis;
1293
+ var uncurryThis$d = functionUncurryThis;
1294
1294
  var notARegExp$1 = notARegexp;
1295
- var requireObjectCoercible$4 = requireObjectCoercible$8;
1296
- var toString$7 = toString$9;
1295
+ var requireObjectCoercible$5 = requireObjectCoercible$9;
1296
+ var toString$8 = toString$a;
1297
1297
  var correctIsRegExpLogic$1 = correctIsRegexpLogic;
1298
1298
 
1299
- var stringIndexOf = uncurryThis$b(''.indexOf);
1299
+ var stringIndexOf$1 = uncurryThis$d(''.indexOf);
1300
1300
 
1301
1301
  // `String.prototype.includes` method
1302
1302
  // https://tc39.es/ecma262/#sec-string.prototype.includes
1303
1303
  $$6({ target: 'String', proto: true, forced: !correctIsRegExpLogic$1('includes') }, {
1304
1304
  includes: function includes(searchString /* , position = 0 */) {
1305
- return !!~stringIndexOf(
1306
- toString$7(requireObjectCoercible$4(this)),
1307
- toString$7(notARegExp$1(searchString)),
1305
+ return !!~stringIndexOf$1(
1306
+ toString$8(requireObjectCoercible$5(this)),
1307
+ toString$8(notARegExp$1(searchString)),
1308
1308
  arguments.length > 1 ? arguments[1] : undefined
1309
1309
  );
1310
1310
  }
1311
1311
  });
1312
1312
 
1313
- var anObject$4 = anObject$9;
1313
+ var anObject$5 = anObject$a;
1314
1314
 
1315
1315
  // `RegExp.prototype.flags` getter implementation
1316
1316
  // https://tc39.es/ecma262/#sec-get-regexp.prototype.flags
1317
1317
  var regexpFlags$1 = function () {
1318
- var that = anObject$4(this);
1318
+ var that = anObject$5(this);
1319
1319
  var result = '';
1320
1320
  if (that.hasIndices) result += 'd';
1321
1321
  if (that.global) result += 'g';
@@ -1328,13 +1328,13 @@ var regexpFlags$1 = function () {
1328
1328
  return result;
1329
1329
  };
1330
1330
 
1331
- var fails$a = fails$k;
1331
+ var fails$b = fails$l;
1332
1332
  var global$4 = global$e;
1333
1333
 
1334
1334
  // babel-minify and Closure Compiler transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError
1335
1335
  var $RegExp$2 = global$4.RegExp;
1336
1336
 
1337
- var UNSUPPORTED_Y$2 = fails$a(function () {
1337
+ var UNSUPPORTED_Y$2 = fails$b(function () {
1338
1338
  var re = $RegExp$2('a', 'y');
1339
1339
  re.lastIndex = 2;
1340
1340
  return re.exec('abcd') != null;
@@ -1342,11 +1342,11 @@ var UNSUPPORTED_Y$2 = fails$a(function () {
1342
1342
 
1343
1343
  // UC Browser bug
1344
1344
  // https://github.com/zloirock/core-js/issues/1008
1345
- var MISSED_STICKY = UNSUPPORTED_Y$2 || fails$a(function () {
1345
+ var MISSED_STICKY = UNSUPPORTED_Y$2 || fails$b(function () {
1346
1346
  return !$RegExp$2('a', 'y').sticky;
1347
1347
  });
1348
1348
 
1349
- var BROKEN_CARET = UNSUPPORTED_Y$2 || fails$a(function () {
1349
+ var BROKEN_CARET = UNSUPPORTED_Y$2 || fails$b(function () {
1350
1350
  // https://bugzilla.mozilla.org/show_bug.cgi?id=773687
1351
1351
  var re = $RegExp$2('^r', 'gy');
1352
1352
  re.lastIndex = 2;
@@ -1359,24 +1359,24 @@ var regexpStickyHelpers = {
1359
1359
  UNSUPPORTED_Y: UNSUPPORTED_Y$2
1360
1360
  };
1361
1361
 
1362
- var fails$9 = fails$k;
1362
+ var fails$a = fails$l;
1363
1363
  var global$3 = global$e;
1364
1364
 
1365
1365
  // babel-minify and Closure Compiler transpiles RegExp('.', 's') -> /./s and it causes SyntaxError
1366
1366
  var $RegExp$1 = global$3.RegExp;
1367
1367
 
1368
- var regexpUnsupportedDotAll = fails$9(function () {
1368
+ var regexpUnsupportedDotAll = fails$a(function () {
1369
1369
  var re = $RegExp$1('.', 's');
1370
1370
  return !(re.dotAll && re.exec('\n') && re.flags === 's');
1371
1371
  });
1372
1372
 
1373
- var fails$8 = fails$k;
1373
+ var fails$9 = fails$l;
1374
1374
  var global$2 = global$e;
1375
1375
 
1376
1376
  // babel-minify and Closure Compiler transpiles RegExp('(?<a>b)', 'g') -> /(?<a>b)/g and it causes SyntaxError
1377
1377
  var $RegExp = global$2.RegExp;
1378
1378
 
1379
- var regexpUnsupportedNcg = fails$8(function () {
1379
+ var regexpUnsupportedNcg = fails$9(function () {
1380
1380
  var re = $RegExp('(?<a>b)', 'g');
1381
1381
  return re.exec('b').groups.a !== 'b' ||
1382
1382
  'b'.replace(re, '$<a>c') !== 'bc';
@@ -1384,9 +1384,9 @@ var regexpUnsupportedNcg = fails$8(function () {
1384
1384
 
1385
1385
  /* eslint-disable regexp/no-empty-capturing-group, regexp/no-empty-group, regexp/no-lazy-ends -- testing */
1386
1386
  /* eslint-disable regexp/no-useless-quantifier -- testing */
1387
- var call$5 = functionCall;
1388
- var uncurryThis$a = functionUncurryThis;
1389
- var toString$6 = toString$9;
1387
+ var call$6 = functionCall;
1388
+ var uncurryThis$c = functionUncurryThis;
1389
+ var toString$7 = toString$a;
1390
1390
  var regexpFlags = regexpFlags$1;
1391
1391
  var stickyHelpers$1 = regexpStickyHelpers;
1392
1392
  var shared = shared$4.exports;
@@ -1398,16 +1398,16 @@ var UNSUPPORTED_NCG = regexpUnsupportedNcg;
1398
1398
  var nativeReplace = shared('native-string-replace', String.prototype.replace);
1399
1399
  var nativeExec = RegExp.prototype.exec;
1400
1400
  var patchedExec = nativeExec;
1401
- var charAt$3 = uncurryThis$a(''.charAt);
1402
- var indexOf = uncurryThis$a(''.indexOf);
1403
- var replace$3 = uncurryThis$a(''.replace);
1404
- var stringSlice$4 = uncurryThis$a(''.slice);
1401
+ var charAt$4 = uncurryThis$c(''.charAt);
1402
+ var indexOf = uncurryThis$c(''.indexOf);
1403
+ var replace$4 = uncurryThis$c(''.replace);
1404
+ var stringSlice$6 = uncurryThis$c(''.slice);
1405
1405
 
1406
1406
  var UPDATES_LAST_INDEX_WRONG = (function () {
1407
1407
  var re1 = /a/;
1408
1408
  var re2 = /b*/g;
1409
- call$5(nativeExec, re1, 'a');
1410
- call$5(nativeExec, re2, 'a');
1409
+ call$6(nativeExec, re1, 'a');
1410
+ call$6(nativeExec, re2, 'a');
1411
1411
  return re1.lastIndex !== 0 || re2.lastIndex !== 0;
1412
1412
  })();
1413
1413
 
@@ -1422,33 +1422,33 @@ if (PATCH) {
1422
1422
  patchedExec = function exec(string) {
1423
1423
  var re = this;
1424
1424
  var state = getInternalState(re);
1425
- var str = toString$6(string);
1425
+ var str = toString$7(string);
1426
1426
  var raw = state.raw;
1427
1427
  var result, reCopy, lastIndex, match, i, object, group;
1428
1428
 
1429
1429
  if (raw) {
1430
1430
  raw.lastIndex = re.lastIndex;
1431
- result = call$5(patchedExec, raw, str);
1431
+ result = call$6(patchedExec, raw, str);
1432
1432
  re.lastIndex = raw.lastIndex;
1433
1433
  return result;
1434
1434
  }
1435
1435
 
1436
1436
  var groups = state.groups;
1437
1437
  var sticky = UNSUPPORTED_Y$1 && re.sticky;
1438
- var flags = call$5(regexpFlags, re);
1438
+ var flags = call$6(regexpFlags, re);
1439
1439
  var source = re.source;
1440
1440
  var charsAdded = 0;
1441
1441
  var strCopy = str;
1442
1442
 
1443
1443
  if (sticky) {
1444
- flags = replace$3(flags, 'y', '');
1444
+ flags = replace$4(flags, 'y', '');
1445
1445
  if (indexOf(flags, 'g') === -1) {
1446
1446
  flags += 'g';
1447
1447
  }
1448
1448
 
1449
- strCopy = stringSlice$4(str, re.lastIndex);
1449
+ strCopy = stringSlice$6(str, re.lastIndex);
1450
1450
  // Support anchored sticky behavior.
1451
- if (re.lastIndex > 0 && (!re.multiline || re.multiline && charAt$3(str, re.lastIndex - 1) !== '\n')) {
1451
+ if (re.lastIndex > 0 && (!re.multiline || re.multiline && charAt$4(str, re.lastIndex - 1) !== '\n')) {
1452
1452
  source = '(?: ' + source + ')';
1453
1453
  strCopy = ' ' + strCopy;
1454
1454
  charsAdded++;
@@ -1463,12 +1463,12 @@ if (PATCH) {
1463
1463
  }
1464
1464
  if (UPDATES_LAST_INDEX_WRONG) lastIndex = re.lastIndex;
1465
1465
 
1466
- match = call$5(nativeExec, sticky ? reCopy : re, strCopy);
1466
+ match = call$6(nativeExec, sticky ? reCopy : re, strCopy);
1467
1467
 
1468
1468
  if (sticky) {
1469
1469
  if (match) {
1470
- match.input = stringSlice$4(match.input, charsAdded);
1471
- match[0] = stringSlice$4(match[0], charsAdded);
1470
+ match.input = stringSlice$6(match.input, charsAdded);
1471
+ match[0] = stringSlice$6(match[0], charsAdded);
1472
1472
  match.index = re.lastIndex;
1473
1473
  re.lastIndex += match[0].length;
1474
1474
  } else re.lastIndex = 0;
@@ -1478,7 +1478,7 @@ if (PATCH) {
1478
1478
  if (NPCG_INCLUDED && match && match.length > 1) {
1479
1479
  // Fix browsers whose `exec` methods don't consistently return `undefined`
1480
1480
  // for NPCG, like IE8. NOTE: This doesn't work for /(.?)?/
1481
- call$5(nativeReplace, match[0], reCopy, function () {
1481
+ call$6(nativeReplace, match[0], reCopy, function () {
1482
1482
  for (i = 1; i < arguments.length - 2; i++) {
1483
1483
  if (arguments[i] === undefined) match[i] = undefined;
1484
1484
  }
@@ -1511,37 +1511,37 @@ $$5({ target: 'RegExp', proto: true, forced: /./.exec !== exec$3 }, {
1511
1511
  var NATIVE_BIND = functionBindNative;
1512
1512
 
1513
1513
  var FunctionPrototype = Function.prototype;
1514
- var apply$2 = FunctionPrototype.apply;
1515
- var call$4 = FunctionPrototype.call;
1514
+ var apply$3 = FunctionPrototype.apply;
1515
+ var call$5 = FunctionPrototype.call;
1516
1516
 
1517
1517
  // eslint-disable-next-line es-x/no-reflect -- safe
1518
- var functionApply = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND ? call$4.bind(apply$2) : function () {
1519
- return call$4.apply(apply$2, arguments);
1518
+ var functionApply = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND ? call$5.bind(apply$3) : function () {
1519
+ return call$5.apply(apply$3, arguments);
1520
1520
  });
1521
1521
 
1522
1522
  // TODO: Remove from `core-js@4` since it's moved to entry points
1523
1523
 
1524
- var uncurryThis$9 = functionUncurryThis;
1524
+ var uncurryThis$b = functionUncurryThis;
1525
1525
  var defineBuiltIn$1 = defineBuiltIn$3;
1526
1526
  var regexpExec$2 = regexpExec$3;
1527
- var fails$7 = fails$k;
1528
- var wellKnownSymbol$1 = wellKnownSymbol$8;
1527
+ var fails$8 = fails$l;
1528
+ var wellKnownSymbol$2 = wellKnownSymbol$9;
1529
1529
  var createNonEnumerableProperty = createNonEnumerableProperty$3;
1530
1530
 
1531
- var SPECIES$1 = wellKnownSymbol$1('species');
1531
+ var SPECIES$1 = wellKnownSymbol$2('species');
1532
1532
  var RegExpPrototype$2 = RegExp.prototype;
1533
1533
 
1534
1534
  var fixRegexpWellKnownSymbolLogic = function (KEY, exec, FORCED, SHAM) {
1535
- var SYMBOL = wellKnownSymbol$1(KEY);
1535
+ var SYMBOL = wellKnownSymbol$2(KEY);
1536
1536
 
1537
- var DELEGATES_TO_SYMBOL = !fails$7(function () {
1537
+ var DELEGATES_TO_SYMBOL = !fails$8(function () {
1538
1538
  // String methods call symbol-named RegEp methods
1539
1539
  var O = {};
1540
1540
  O[SYMBOL] = function () { return 7; };
1541
1541
  return ''[KEY](O) != 7;
1542
1542
  });
1543
1543
 
1544
- var DELEGATES_TO_EXEC = DELEGATES_TO_SYMBOL && !fails$7(function () {
1544
+ var DELEGATES_TO_EXEC = DELEGATES_TO_SYMBOL && !fails$8(function () {
1545
1545
  // Symbol-named RegExp methods call .exec
1546
1546
  var execCalled = false;
1547
1547
  var re = /a/;
@@ -1570,9 +1570,9 @@ var fixRegexpWellKnownSymbolLogic = function (KEY, exec, FORCED, SHAM) {
1570
1570
  !DELEGATES_TO_EXEC ||
1571
1571
  FORCED
1572
1572
  ) {
1573
- var uncurriedNativeRegExpMethod = uncurryThis$9(/./[SYMBOL]);
1573
+ var uncurriedNativeRegExpMethod = uncurryThis$b(/./[SYMBOL]);
1574
1574
  var methods = exec(SYMBOL, ''[KEY], function (nativeMethod, regexp, str, arg2, forceStringMethod) {
1575
- var uncurriedNativeMethod = uncurryThis$9(nativeMethod);
1575
+ var uncurriedNativeMethod = uncurryThis$b(nativeMethod);
1576
1576
  var $exec = regexp.exec;
1577
1577
  if ($exec === regexpExec$2 || $exec === RegExpPrototype$2.exec) {
1578
1578
  if (DELEGATES_TO_SYMBOL && !forceStringMethod) {
@@ -1593,9 +1593,9 @@ var fixRegexpWellKnownSymbolLogic = function (KEY, exec, FORCED, SHAM) {
1593
1593
  if (SHAM) createNonEnumerableProperty(RegExpPrototype$2[SYMBOL], 'sham', true);
1594
1594
  };
1595
1595
 
1596
- var uncurryThis$8 = functionUncurryThis;
1597
- var fails$6 = fails$k;
1598
- var isCallable$3 = isCallable$f;
1596
+ var uncurryThis$a = functionUncurryThis;
1597
+ var fails$7 = fails$l;
1598
+ var isCallable$4 = isCallable$g;
1599
1599
  var classof$2 = classof$5;
1600
1600
  var getBuiltIn$1 = getBuiltIn$6;
1601
1601
  var inspectSource = inspectSource$3;
@@ -1604,11 +1604,11 @@ var noop = function () { /* empty */ };
1604
1604
  var empty = [];
1605
1605
  var construct = getBuiltIn$1('Reflect', 'construct');
1606
1606
  var constructorRegExp = /^\s*(?:class|function)\b/;
1607
- var exec$2 = uncurryThis$8(constructorRegExp.exec);
1607
+ var exec$2 = uncurryThis$a(constructorRegExp.exec);
1608
1608
  var INCORRECT_TO_STRING = !constructorRegExp.exec(noop);
1609
1609
 
1610
1610
  var isConstructorModern = function isConstructor(argument) {
1611
- if (!isCallable$3(argument)) return false;
1611
+ if (!isCallable$4(argument)) return false;
1612
1612
  try {
1613
1613
  construct(noop, empty, argument);
1614
1614
  return true;
@@ -1618,7 +1618,7 @@ var isConstructorModern = function isConstructor(argument) {
1618
1618
  };
1619
1619
 
1620
1620
  var isConstructorLegacy = function isConstructor(argument) {
1621
- if (!isCallable$3(argument)) return false;
1621
+ if (!isCallable$4(argument)) return false;
1622
1622
  switch (classof$2(argument)) {
1623
1623
  case 'AsyncFunction':
1624
1624
  case 'GeneratorFunction':
@@ -1638,7 +1638,7 @@ isConstructorLegacy.sham = true;
1638
1638
 
1639
1639
  // `IsConstructor` abstract operation
1640
1640
  // https://tc39.es/ecma262/#sec-isconstructor
1641
- var isConstructor$1 = !construct || fails$6(function () {
1641
+ var isConstructor$1 = !construct || fails$7(function () {
1642
1642
  var called;
1643
1643
  return isConstructorModern(isConstructorModern.call)
1644
1644
  || !isConstructorModern(Object)
@@ -1657,33 +1657,33 @@ var aConstructor$1 = function (argument) {
1657
1657
  throw $TypeError$2(tryToString$1(argument) + ' is not a constructor');
1658
1658
  };
1659
1659
 
1660
- var anObject$3 = anObject$9;
1660
+ var anObject$4 = anObject$a;
1661
1661
  var aConstructor = aConstructor$1;
1662
- var wellKnownSymbol = wellKnownSymbol$8;
1662
+ var wellKnownSymbol$1 = wellKnownSymbol$9;
1663
1663
 
1664
- var SPECIES = wellKnownSymbol('species');
1664
+ var SPECIES = wellKnownSymbol$1('species');
1665
1665
 
1666
1666
  // `SpeciesConstructor` abstract operation
1667
1667
  // https://tc39.es/ecma262/#sec-speciesconstructor
1668
1668
  var speciesConstructor$1 = function (O, defaultConstructor) {
1669
- var C = anObject$3(O).constructor;
1669
+ var C = anObject$4(O).constructor;
1670
1670
  var S;
1671
- return C === undefined || (S = anObject$3(C)[SPECIES]) == undefined ? defaultConstructor : aConstructor(S);
1671
+ return C === undefined || (S = anObject$4(C)[SPECIES]) == undefined ? defaultConstructor : aConstructor(S);
1672
1672
  };
1673
1673
 
1674
- var uncurryThis$7 = functionUncurryThis;
1675
- var toIntegerOrInfinity = toIntegerOrInfinity$3;
1676
- var toString$5 = toString$9;
1677
- var requireObjectCoercible$3 = requireObjectCoercible$8;
1674
+ var uncurryThis$9 = functionUncurryThis;
1675
+ var toIntegerOrInfinity$1 = toIntegerOrInfinity$4;
1676
+ var toString$6 = toString$a;
1677
+ var requireObjectCoercible$4 = requireObjectCoercible$9;
1678
1678
 
1679
- var charAt$2 = uncurryThis$7(''.charAt);
1680
- var charCodeAt$1 = uncurryThis$7(''.charCodeAt);
1681
- var stringSlice$3 = uncurryThis$7(''.slice);
1679
+ var charAt$3 = uncurryThis$9(''.charAt);
1680
+ var charCodeAt$1 = uncurryThis$9(''.charCodeAt);
1681
+ var stringSlice$5 = uncurryThis$9(''.slice);
1682
1682
 
1683
1683
  var createMethod$1 = function (CONVERT_TO_STRING) {
1684
1684
  return function ($this, pos) {
1685
- var S = toString$5(requireObjectCoercible$3($this));
1686
- var position = toIntegerOrInfinity(pos);
1685
+ var S = toString$6(requireObjectCoercible$4($this));
1686
+ var position = toIntegerOrInfinity$1(pos);
1687
1687
  var size = S.length;
1688
1688
  var first, second;
1689
1689
  if (position < 0 || position >= size) return CONVERT_TO_STRING ? '' : undefined;
@@ -1691,10 +1691,10 @@ var createMethod$1 = function (CONVERT_TO_STRING) {
1691
1691
  return first < 0xD800 || first > 0xDBFF || position + 1 === size
1692
1692
  || (second = charCodeAt$1(S, position + 1)) < 0xDC00 || second > 0xDFFF
1693
1693
  ? CONVERT_TO_STRING
1694
- ? charAt$2(S, position)
1694
+ ? charAt$3(S, position)
1695
1695
  : first
1696
1696
  : CONVERT_TO_STRING
1697
- ? stringSlice$3(S, position, position + 2)
1697
+ ? stringSlice$5(S, position, position + 2)
1698
1698
  : (first - 0xD800 << 10) + (second - 0xDC00) + 0x10000;
1699
1699
  };
1700
1700
  };
@@ -1708,12 +1708,12 @@ var stringMultibyte = {
1708
1708
  charAt: createMethod$1(true)
1709
1709
  };
1710
1710
 
1711
- var charAt$1 = stringMultibyte.charAt;
1711
+ var charAt$2 = stringMultibyte.charAt;
1712
1712
 
1713
1713
  // `AdvanceStringIndex` abstract operation
1714
1714
  // https://tc39.es/ecma262/#sec-advancestringindex
1715
- var advanceStringIndex$1 = function (S, index, unicode) {
1716
- return index + (unicode ? charAt$1(S, index).length : 1);
1715
+ var advanceStringIndex$2 = function (S, index, unicode) {
1716
+ return index + (unicode ? charAt$2(S, index).length : 1);
1717
1717
  };
1718
1718
 
1719
1719
  var toPropertyKey = toPropertyKey$3;
@@ -1731,21 +1731,21 @@ var lengthOfArrayLike$1 = lengthOfArrayLike$3;
1731
1731
  var createProperty = createProperty$1;
1732
1732
 
1733
1733
  var $Array = Array;
1734
- var max$2 = Math.max;
1734
+ var max$3 = Math.max;
1735
1735
 
1736
1736
  var arraySliceSimple = function (O, start, end) {
1737
1737
  var length = lengthOfArrayLike$1(O);
1738
1738
  var k = toAbsoluteIndex(start, length);
1739
1739
  var fin = toAbsoluteIndex(end === undefined ? length : end, length);
1740
- var result = $Array(max$2(fin - k, 0));
1740
+ var result = $Array(max$3(fin - k, 0));
1741
1741
  for (var n = 0; k < fin; k++, n++) createProperty(result, n, O[k]);
1742
1742
  result.length = n;
1743
1743
  return result;
1744
1744
  };
1745
1745
 
1746
- var call$3 = functionCall;
1747
- var anObject$2 = anObject$9;
1748
- var isCallable$2 = isCallable$f;
1746
+ var call$4 = functionCall;
1747
+ var anObject$3 = anObject$a;
1748
+ var isCallable$3 = isCallable$g;
1749
1749
  var classof$1 = classofRaw$1;
1750
1750
  var regexpExec$1 = regexpExec$3;
1751
1751
 
@@ -1755,44 +1755,44 @@ var $TypeError$1 = TypeError;
1755
1755
  // https://tc39.es/ecma262/#sec-regexpexec
1756
1756
  var regexpExecAbstract = function (R, S) {
1757
1757
  var exec = R.exec;
1758
- if (isCallable$2(exec)) {
1759
- var result = call$3(exec, R, S);
1760
- if (result !== null) anObject$2(result);
1758
+ if (isCallable$3(exec)) {
1759
+ var result = call$4(exec, R, S);
1760
+ if (result !== null) anObject$3(result);
1761
1761
  return result;
1762
1762
  }
1763
- if (classof$1(R) === 'RegExp') return call$3(regexpExec$1, R, S);
1763
+ if (classof$1(R) === 'RegExp') return call$4(regexpExec$1, R, S);
1764
1764
  throw $TypeError$1('RegExp#exec called on incompatible receiver');
1765
1765
  };
1766
1766
 
1767
- var apply$1 = functionApply;
1768
- var call$2 = functionCall;
1769
- var uncurryThis$6 = functionUncurryThis;
1770
- var fixRegExpWellKnownSymbolLogic = fixRegexpWellKnownSymbolLogic;
1767
+ var apply$2 = functionApply;
1768
+ var call$3 = functionCall;
1769
+ var uncurryThis$8 = functionUncurryThis;
1770
+ var fixRegExpWellKnownSymbolLogic$1 = fixRegexpWellKnownSymbolLogic;
1771
1771
  var isRegExp = isRegexp;
1772
- var anObject$1 = anObject$9;
1773
- var requireObjectCoercible$2 = requireObjectCoercible$8;
1772
+ var anObject$2 = anObject$a;
1773
+ var requireObjectCoercible$3 = requireObjectCoercible$9;
1774
1774
  var speciesConstructor = speciesConstructor$1;
1775
- var advanceStringIndex = advanceStringIndex$1;
1776
- var toLength$1 = toLength$4;
1777
- var toString$4 = toString$9;
1778
- var getMethod = getMethod$2;
1775
+ var advanceStringIndex$1 = advanceStringIndex$2;
1776
+ var toLength$2 = toLength$5;
1777
+ var toString$5 = toString$a;
1778
+ var getMethod$1 = getMethod$3;
1779
1779
  var arraySlice$3 = arraySliceSimple;
1780
1780
  var callRegExpExec = regexpExecAbstract;
1781
1781
  var regexpExec = regexpExec$3;
1782
1782
  var stickyHelpers = regexpStickyHelpers;
1783
- var fails$5 = fails$k;
1783
+ var fails$6 = fails$l;
1784
1784
 
1785
1785
  var UNSUPPORTED_Y = stickyHelpers.UNSUPPORTED_Y;
1786
1786
  var MAX_UINT32 = 0xFFFFFFFF;
1787
- var min$3 = Math.min;
1787
+ var min$4 = Math.min;
1788
1788
  var $push = [].push;
1789
- var exec$1 = uncurryThis$6(/./.exec);
1790
- var push$1 = uncurryThis$6($push);
1791
- var stringSlice$2 = uncurryThis$6(''.slice);
1789
+ var exec$1 = uncurryThis$8(/./.exec);
1790
+ var push$2 = uncurryThis$8($push);
1791
+ var stringSlice$4 = uncurryThis$8(''.slice);
1792
1792
 
1793
1793
  // Chrome 51 has a buggy "split" implementation when RegExp#exec !== nativeExec
1794
1794
  // Weex JS has frozen built-in prototypes, so use try / catch wrapper
1795
- var SPLIT_WORKS_WITH_OVERWRITTEN_EXEC = !fails$5(function () {
1795
+ var SPLIT_WORKS_WITH_OVERWRITTEN_EXEC = !fails$6(function () {
1796
1796
  // eslint-disable-next-line regexp/no-empty-group -- required for testing
1797
1797
  var re = /(?:)/;
1798
1798
  var originalExec = re.exec;
@@ -1802,7 +1802,7 @@ var SPLIT_WORKS_WITH_OVERWRITTEN_EXEC = !fails$5(function () {
1802
1802
  });
1803
1803
 
1804
1804
  // @@split logic
1805
- fixRegExpWellKnownSymbolLogic('split', function (SPLIT, nativeSplit, maybeCallNative) {
1805
+ fixRegExpWellKnownSymbolLogic$1('split', function (SPLIT, nativeSplit, maybeCallNative) {
1806
1806
  var internalSplit;
1807
1807
  if (
1808
1808
  'abbc'.split(/(b)*/)[1] == 'c' ||
@@ -1816,13 +1816,13 @@ fixRegExpWellKnownSymbolLogic('split', function (SPLIT, nativeSplit, maybeCallNa
1816
1816
  ) {
1817
1817
  // based on es5-shim implementation, need to rework it
1818
1818
  internalSplit = function (separator, limit) {
1819
- var string = toString$4(requireObjectCoercible$2(this));
1819
+ var string = toString$5(requireObjectCoercible$3(this));
1820
1820
  var lim = limit === undefined ? MAX_UINT32 : limit >>> 0;
1821
1821
  if (lim === 0) return [];
1822
1822
  if (separator === undefined) return [string];
1823
1823
  // If `separator` is not a regex, use native split
1824
1824
  if (!isRegExp(separator)) {
1825
- return call$2(nativeSplit, string, separator, lim);
1825
+ return call$3(nativeSplit, string, separator, lim);
1826
1826
  }
1827
1827
  var output = [];
1828
1828
  var flags = (separator.ignoreCase ? 'i' : '') +
@@ -1833,11 +1833,11 @@ fixRegExpWellKnownSymbolLogic('split', function (SPLIT, nativeSplit, maybeCallNa
1833
1833
  // Make `global` and avoid `lastIndex` issues by working with a copy
1834
1834
  var separatorCopy = new RegExp(separator.source, flags + 'g');
1835
1835
  var match, lastIndex, lastLength;
1836
- while (match = call$2(regexpExec, separatorCopy, string)) {
1836
+ while (match = call$3(regexpExec, separatorCopy, string)) {
1837
1837
  lastIndex = separatorCopy.lastIndex;
1838
1838
  if (lastIndex > lastLastIndex) {
1839
- push$1(output, stringSlice$2(string, lastLastIndex, match.index));
1840
- if (match.length > 1 && match.index < string.length) apply$1($push, output, arraySlice$3(match, 1));
1839
+ push$2(output, stringSlice$4(string, lastLastIndex, match.index));
1840
+ if (match.length > 1 && match.index < string.length) apply$2($push, output, arraySlice$3(match, 1));
1841
1841
  lastLength = match[0].length;
1842
1842
  lastLastIndex = lastIndex;
1843
1843
  if (output.length >= lim) break;
@@ -1845,14 +1845,14 @@ fixRegExpWellKnownSymbolLogic('split', function (SPLIT, nativeSplit, maybeCallNa
1845
1845
  if (separatorCopy.lastIndex === match.index) separatorCopy.lastIndex++; // Avoid an infinite loop
1846
1846
  }
1847
1847
  if (lastLastIndex === string.length) {
1848
- if (lastLength || !exec$1(separatorCopy, '')) push$1(output, '');
1849
- } else push$1(output, stringSlice$2(string, lastLastIndex));
1848
+ if (lastLength || !exec$1(separatorCopy, '')) push$2(output, '');
1849
+ } else push$2(output, stringSlice$4(string, lastLastIndex));
1850
1850
  return output.length > lim ? arraySlice$3(output, 0, lim) : output;
1851
1851
  };
1852
1852
  // Chakra, V8
1853
1853
  } else if ('0'.split(undefined, 0).length) {
1854
1854
  internalSplit = function (separator, limit) {
1855
- return separator === undefined && limit === 0 ? [] : call$2(nativeSplit, this, separator, limit);
1855
+ return separator === undefined && limit === 0 ? [] : call$3(nativeSplit, this, separator, limit);
1856
1856
  };
1857
1857
  } else internalSplit = nativeSplit;
1858
1858
 
@@ -1860,11 +1860,11 @@ fixRegExpWellKnownSymbolLogic('split', function (SPLIT, nativeSplit, maybeCallNa
1860
1860
  // `String.prototype.split` method
1861
1861
  // https://tc39.es/ecma262/#sec-string.prototype.split
1862
1862
  function split(separator, limit) {
1863
- var O = requireObjectCoercible$2(this);
1864
- var splitter = separator == undefined ? undefined : getMethod(separator, SPLIT);
1863
+ var O = requireObjectCoercible$3(this);
1864
+ var splitter = separator == undefined ? undefined : getMethod$1(separator, SPLIT);
1865
1865
  return splitter
1866
- ? call$2(splitter, separator, O, limit)
1867
- : call$2(internalSplit, toString$4(O), separator, limit);
1866
+ ? call$3(splitter, separator, O, limit)
1867
+ : call$3(internalSplit, toString$5(O), separator, limit);
1868
1868
  },
1869
1869
  // `RegExp.prototype[@@split]` method
1870
1870
  // https://tc39.es/ecma262/#sec-regexp.prototype-@@split
@@ -1872,8 +1872,8 @@ fixRegExpWellKnownSymbolLogic('split', function (SPLIT, nativeSplit, maybeCallNa
1872
1872
  // NOTE: This cannot be properly polyfilled in engines that don't support
1873
1873
  // the 'y' flag.
1874
1874
  function (string, limit) {
1875
- var rx = anObject$1(this);
1876
- var S = toString$4(string);
1875
+ var rx = anObject$2(this);
1876
+ var S = toString$5(string);
1877
1877
  var res = maybeCallNative(internalSplit, rx, S, limit, internalSplit !== nativeSplit);
1878
1878
 
1879
1879
  if (res.done) return res.value;
@@ -1897,24 +1897,24 @@ fixRegExpWellKnownSymbolLogic('split', function (SPLIT, nativeSplit, maybeCallNa
1897
1897
  var A = [];
1898
1898
  while (q < S.length) {
1899
1899
  splitter.lastIndex = UNSUPPORTED_Y ? 0 : q;
1900
- var z = callRegExpExec(splitter, UNSUPPORTED_Y ? stringSlice$2(S, q) : S);
1900
+ var z = callRegExpExec(splitter, UNSUPPORTED_Y ? stringSlice$4(S, q) : S);
1901
1901
  var e;
1902
1902
  if (
1903
1903
  z === null ||
1904
- (e = min$3(toLength$1(splitter.lastIndex + (UNSUPPORTED_Y ? q : 0)), S.length)) === p
1904
+ (e = min$4(toLength$2(splitter.lastIndex + (UNSUPPORTED_Y ? q : 0)), S.length)) === p
1905
1905
  ) {
1906
- q = advanceStringIndex(S, q, unicodeMatching);
1906
+ q = advanceStringIndex$1(S, q, unicodeMatching);
1907
1907
  } else {
1908
- push$1(A, stringSlice$2(S, p, q));
1908
+ push$2(A, stringSlice$4(S, p, q));
1909
1909
  if (A.length === lim) return A;
1910
1910
  for (var i = 1; i <= z.length - 1; i++) {
1911
- push$1(A, z[i]);
1911
+ push$2(A, z[i]);
1912
1912
  if (A.length === lim) return A;
1913
1913
  }
1914
1914
  q = p = e;
1915
1915
  }
1916
1916
  }
1917
- push$1(A, stringSlice$2(S, p));
1917
+ push$2(A, stringSlice$4(S, p));
1918
1918
  return A;
1919
1919
  }
1920
1920
  ];
@@ -3376,7 +3376,7 @@ var ProgressCircle = function ProgressCircle(_a) {
3376
3376
  });
3377
3377
  };
3378
3378
 
3379
- var call$1 = functionCall;
3379
+ var call$2 = functionCall;
3380
3380
  var hasOwn$1 = hasOwnProperty_1;
3381
3381
  var isPrototypeOf$1 = objectIsPrototypeOf;
3382
3382
  var regExpFlags = regexpFlags$1;
@@ -3386,21 +3386,21 @@ var RegExpPrototype$1 = RegExp.prototype;
3386
3386
  var regexpGetFlags = function (R) {
3387
3387
  var flags = R.flags;
3388
3388
  return flags === undefined && !('flags' in RegExpPrototype$1) && !hasOwn$1(R, 'flags') && isPrototypeOf$1(RegExpPrototype$1, R)
3389
- ? call$1(regExpFlags, R) : flags;
3389
+ ? call$2(regExpFlags, R) : flags;
3390
3390
  };
3391
3391
 
3392
3392
  var PROPER_FUNCTION_NAME$1 = functionName.PROPER;
3393
3393
  var defineBuiltIn = defineBuiltIn$3;
3394
- var anObject = anObject$9;
3395
- var $toString = toString$9;
3396
- var fails$4 = fails$k;
3394
+ var anObject$1 = anObject$a;
3395
+ var $toString = toString$a;
3396
+ var fails$5 = fails$l;
3397
3397
  var getRegExpFlags = regexpGetFlags;
3398
3398
 
3399
3399
  var TO_STRING = 'toString';
3400
3400
  var RegExpPrototype = RegExp.prototype;
3401
3401
  var n$ToString = RegExpPrototype[TO_STRING];
3402
3402
 
3403
- var NOT_GENERIC = fails$4(function () { return n$ToString.call({ source: 'a', flags: 'b' }) != '/a/b'; });
3403
+ var NOT_GENERIC = fails$5(function () { return n$ToString.call({ source: 'a', flags: 'b' }) != '/a/b'; });
3404
3404
  // FF44- RegExp#toString has a wrong name
3405
3405
  var INCORRECT_NAME = PROPER_FUNCTION_NAME$1 && n$ToString.name != TO_STRING;
3406
3406
 
@@ -3408,7 +3408,7 @@ var INCORRECT_NAME = PROPER_FUNCTION_NAME$1 && n$ToString.name != TO_STRING;
3408
3408
  // https://tc39.es/ecma262/#sec-regexp.prototype.tostring
3409
3409
  if (NOT_GENERIC || INCORRECT_NAME) {
3410
3410
  defineBuiltIn(RegExp.prototype, TO_STRING, function toString() {
3411
- var R = anObject(this);
3411
+ var R = anObject$1(this);
3412
3412
  var pattern = $toString(R.source);
3413
3413
  var flags = $toString(getRegExpFlags(R));
3414
3414
  return '/' + pattern + '/' + flags;
@@ -5374,12 +5374,12 @@ var BadgeGroup = function BadgeGroup(_a) {
5374
5374
  var whitespaces$2 = '\u0009\u000A\u000B\u000C\u000D\u0020\u00A0\u1680\u2000\u2001\u2002' +
5375
5375
  '\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF';
5376
5376
 
5377
- var uncurryThis$5 = functionUncurryThis;
5378
- var requireObjectCoercible$1 = requireObjectCoercible$8;
5379
- var toString$3 = toString$9;
5377
+ var uncurryThis$7 = functionUncurryThis;
5378
+ var requireObjectCoercible$2 = requireObjectCoercible$9;
5379
+ var toString$4 = toString$a;
5380
5380
  var whitespaces$1 = whitespaces$2;
5381
5381
 
5382
- var replace$2 = uncurryThis$5(''.replace);
5382
+ var replace$3 = uncurryThis$7(''.replace);
5383
5383
  var whitespace = '[' + whitespaces$1 + ']';
5384
5384
  var ltrim = RegExp('^' + whitespace + whitespace + '*');
5385
5385
  var rtrim = RegExp(whitespace + whitespace + '*$');
@@ -5387,9 +5387,9 @@ var rtrim = RegExp(whitespace + whitespace + '*$');
5387
5387
  // `String.prototype.{ trim, trimStart, trimEnd, trimLeft, trimRight }` methods implementation
5388
5388
  var createMethod = function (TYPE) {
5389
5389
  return function ($this) {
5390
- var string = toString$3(requireObjectCoercible$1($this));
5391
- if (TYPE & 1) string = replace$2(string, ltrim, '');
5392
- if (TYPE & 2) string = replace$2(string, rtrim, '');
5390
+ var string = toString$4(requireObjectCoercible$2($this));
5391
+ if (TYPE & 1) string = replace$3(string, ltrim, '');
5392
+ if (TYPE & 2) string = replace$3(string, rtrim, '');
5393
5393
  return string;
5394
5394
  };
5395
5395
  };
@@ -5407,7 +5407,7 @@ var stringTrim = {
5407
5407
  };
5408
5408
 
5409
5409
  var PROPER_FUNCTION_NAME = functionName.PROPER;
5410
- var fails$3 = fails$k;
5410
+ var fails$4 = fails$l;
5411
5411
  var whitespaces = whitespaces$2;
5412
5412
 
5413
5413
  var non = '\u200B\u0085\u180E';
@@ -5415,7 +5415,7 @@ var non = '\u200B\u0085\u180E';
5415
5415
  // check that a method works with the correct list
5416
5416
  // of whitespaces and has a correct name
5417
5417
  var stringTrimForced = function (METHOD_NAME) {
5418
- return fails$3(function () {
5418
+ return fails$4(function () {
5419
5419
  return !!whitespaces[METHOD_NAME]()
5420
5420
  || non[METHOD_NAME]() !== non
5421
5421
  || (PROPER_FUNCTION_NAME && whitespaces[METHOD_NAME].name !== METHOD_NAME);
@@ -5434,6 +5434,187 @@ $$4({ target: 'String', proto: true, forced: forcedStringTrimMethod('trim') }, {
5434
5434
  }
5435
5435
  });
5436
5436
 
5437
+ var uncurryThis$6 = functionUncurryThis;
5438
+ var toObject$1 = toObject$3;
5439
+
5440
+ var floor$1 = Math.floor;
5441
+ var charAt$1 = uncurryThis$6(''.charAt);
5442
+ var replace$2 = uncurryThis$6(''.replace);
5443
+ var stringSlice$3 = uncurryThis$6(''.slice);
5444
+ var SUBSTITUTION_SYMBOLS = /\$([$&'`]|\d{1,2}|<[^>]*>)/g;
5445
+ var SUBSTITUTION_SYMBOLS_NO_NAMED = /\$([$&'`]|\d{1,2})/g;
5446
+
5447
+ // `GetSubstitution` abstract operation
5448
+ // https://tc39.es/ecma262/#sec-getsubstitution
5449
+ var getSubstitution$1 = function (matched, str, position, captures, namedCaptures, replacement) {
5450
+ var tailPos = position + matched.length;
5451
+ var m = captures.length;
5452
+ var symbols = SUBSTITUTION_SYMBOLS_NO_NAMED;
5453
+ if (namedCaptures !== undefined) {
5454
+ namedCaptures = toObject$1(namedCaptures);
5455
+ symbols = SUBSTITUTION_SYMBOLS;
5456
+ }
5457
+ return replace$2(replacement, symbols, function (match, ch) {
5458
+ var capture;
5459
+ switch (charAt$1(ch, 0)) {
5460
+ case '$': return '$';
5461
+ case '&': return matched;
5462
+ case '`': return stringSlice$3(str, 0, position);
5463
+ case "'": return stringSlice$3(str, tailPos);
5464
+ case '<':
5465
+ capture = namedCaptures[stringSlice$3(ch, 1, -1)];
5466
+ break;
5467
+ default: // \d\d?
5468
+ var n = +ch;
5469
+ if (n === 0) return match;
5470
+ if (n > m) {
5471
+ var f = floor$1(n / 10);
5472
+ if (f === 0) return match;
5473
+ if (f <= m) return captures[f - 1] === undefined ? charAt$1(ch, 1) : captures[f - 1] + charAt$1(ch, 1);
5474
+ return match;
5475
+ }
5476
+ capture = captures[n - 1];
5477
+ }
5478
+ return capture === undefined ? '' : capture;
5479
+ });
5480
+ };
5481
+
5482
+ var apply$1 = functionApply;
5483
+ var call$1 = functionCall;
5484
+ var uncurryThis$5 = functionUncurryThis;
5485
+ var fixRegExpWellKnownSymbolLogic = fixRegexpWellKnownSymbolLogic;
5486
+ var fails$3 = fails$l;
5487
+ var anObject = anObject$a;
5488
+ var isCallable$2 = isCallable$g;
5489
+ var toIntegerOrInfinity = toIntegerOrInfinity$4;
5490
+ var toLength$1 = toLength$5;
5491
+ var toString$3 = toString$a;
5492
+ var requireObjectCoercible$1 = requireObjectCoercible$9;
5493
+ var advanceStringIndex = advanceStringIndex$2;
5494
+ var getMethod = getMethod$3;
5495
+ var getSubstitution = getSubstitution$1;
5496
+ var regExpExec = regexpExecAbstract;
5497
+ var wellKnownSymbol = wellKnownSymbol$9;
5498
+
5499
+ var REPLACE = wellKnownSymbol('replace');
5500
+ var max$2 = Math.max;
5501
+ var min$3 = Math.min;
5502
+ var concat = uncurryThis$5([].concat);
5503
+ var push$1 = uncurryThis$5([].push);
5504
+ var stringIndexOf = uncurryThis$5(''.indexOf);
5505
+ var stringSlice$2 = uncurryThis$5(''.slice);
5506
+
5507
+ var maybeToString = function (it) {
5508
+ return it === undefined ? it : String(it);
5509
+ };
5510
+
5511
+ // IE <= 11 replaces $0 with the whole match, as if it was $&
5512
+ // https://stackoverflow.com/questions/6024666/getting-ie-to-replace-a-regex-with-the-literal-string-0
5513
+ var REPLACE_KEEPS_$0 = (function () {
5514
+ // eslint-disable-next-line regexp/prefer-escape-replacement-dollar-char -- required for testing
5515
+ return 'a'.replace(/./, '$0') === '$0';
5516
+ })();
5517
+
5518
+ // Safari <= 13.0.3(?) substitutes nth capture where n>m with an empty string
5519
+ var REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE = (function () {
5520
+ if (/./[REPLACE]) {
5521
+ return /./[REPLACE]('a', '$0') === '';
5522
+ }
5523
+ return false;
5524
+ })();
5525
+
5526
+ var REPLACE_SUPPORTS_NAMED_GROUPS = !fails$3(function () {
5527
+ var re = /./;
5528
+ re.exec = function () {
5529
+ var result = [];
5530
+ result.groups = { a: '7' };
5531
+ return result;
5532
+ };
5533
+ // eslint-disable-next-line regexp/no-useless-dollar-replacements -- false positive
5534
+ return ''.replace(re, '$<a>') !== '7';
5535
+ });
5536
+
5537
+ // @@replace logic
5538
+ fixRegExpWellKnownSymbolLogic('replace', function (_, nativeReplace, maybeCallNative) {
5539
+ var UNSAFE_SUBSTITUTE = REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE ? '$' : '$0';
5540
+
5541
+ return [
5542
+ // `String.prototype.replace` method
5543
+ // https://tc39.es/ecma262/#sec-string.prototype.replace
5544
+ function replace(searchValue, replaceValue) {
5545
+ var O = requireObjectCoercible$1(this);
5546
+ var replacer = searchValue == undefined ? undefined : getMethod(searchValue, REPLACE);
5547
+ return replacer
5548
+ ? call$1(replacer, searchValue, O, replaceValue)
5549
+ : call$1(nativeReplace, toString$3(O), searchValue, replaceValue);
5550
+ },
5551
+ // `RegExp.prototype[@@replace]` method
5552
+ // https://tc39.es/ecma262/#sec-regexp.prototype-@@replace
5553
+ function (string, replaceValue) {
5554
+ var rx = anObject(this);
5555
+ var S = toString$3(string);
5556
+
5557
+ if (
5558
+ typeof replaceValue == 'string' &&
5559
+ stringIndexOf(replaceValue, UNSAFE_SUBSTITUTE) === -1 &&
5560
+ stringIndexOf(replaceValue, '$<') === -1
5561
+ ) {
5562
+ var res = maybeCallNative(nativeReplace, rx, S, replaceValue);
5563
+ if (res.done) return res.value;
5564
+ }
5565
+
5566
+ var functionalReplace = isCallable$2(replaceValue);
5567
+ if (!functionalReplace) replaceValue = toString$3(replaceValue);
5568
+
5569
+ var global = rx.global;
5570
+ if (global) {
5571
+ var fullUnicode = rx.unicode;
5572
+ rx.lastIndex = 0;
5573
+ }
5574
+ var results = [];
5575
+ while (true) {
5576
+ var result = regExpExec(rx, S);
5577
+ if (result === null) break;
5578
+
5579
+ push$1(results, result);
5580
+ if (!global) break;
5581
+
5582
+ var matchStr = toString$3(result[0]);
5583
+ if (matchStr === '') rx.lastIndex = advanceStringIndex(S, toLength$1(rx.lastIndex), fullUnicode);
5584
+ }
5585
+
5586
+ var accumulatedResult = '';
5587
+ var nextSourcePosition = 0;
5588
+ for (var i = 0; i < results.length; i++) {
5589
+ result = results[i];
5590
+
5591
+ var matched = toString$3(result[0]);
5592
+ var position = max$2(min$3(toIntegerOrInfinity(result.index), S.length), 0);
5593
+ var captures = [];
5594
+ // NOTE: This is equivalent to
5595
+ // captures = result.slice(1).map(maybeToString)
5596
+ // but for some reason `nativeSlice.call(result, 1, result.length)` (called in
5597
+ // the slice polyfill when slicing native arrays) "doesn't work" in safari 9 and
5598
+ // causes a crash (https://pastebin.com/N21QzeQA) when trying to debug it.
5599
+ for (var j = 1; j < result.length; j++) push$1(captures, maybeToString(result[j]));
5600
+ var namedCaptures = result.groups;
5601
+ if (functionalReplace) {
5602
+ var replacerArgs = concat([matched], captures, position, S);
5603
+ if (namedCaptures !== undefined) push$1(replacerArgs, namedCaptures);
5604
+ var replacement = toString$3(apply$1(replaceValue, undefined, replacerArgs));
5605
+ } else {
5606
+ replacement = getSubstitution(matched, S, position, captures, namedCaptures, replaceValue);
5607
+ }
5608
+ if (position >= nextSourcePosition) {
5609
+ accumulatedResult += stringSlice$2(S, nextSourcePosition, position) + replacement;
5610
+ nextSourcePosition = position + matched.length;
5611
+ }
5612
+ }
5613
+ return accumulatedResult + stringSlice$2(S, nextSourcePosition);
5614
+ }
5615
+ ];
5616
+ }, !REPLACE_SUPPORTS_NAMED_GROUPS || !REPLACE_KEEPS_$0 || REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE);
5617
+
5437
5618
  var AddSuggestion = function AddSuggestion(_a) {
5438
5619
  var label = _a.label,
5439
5620
  _b = _a.handleSuggestionValChange,
@@ -5575,7 +5756,7 @@ var AddSuggestion = function AddSuggestion(_a) {
5575
5756
  isDynamicHeight: isDynamicHeight,
5576
5757
  inputProps: __assign(__assign({}, inputProps), {
5577
5758
  onChange: changeHandler,
5578
- value: sugVal,
5759
+ value: sugVal.replace(/<br \/>/g, ''),
5579
5760
  onFocus: function onFocus() {
5580
5761
  return setShowDropdown(true);
5581
5762
  },
@@ -5609,9 +5790,9 @@ var DESCRIPTORS = descriptors;
5609
5790
  var global$1 = global$e;
5610
5791
  var uncurryThis$4 = functionUncurryThis;
5611
5792
  var hasOwn = hasOwnProperty_1;
5612
- var isCallable$1 = isCallable$f;
5793
+ var isCallable$1 = isCallable$g;
5613
5794
  var isPrototypeOf = objectIsPrototypeOf;
5614
- var toString$2 = toString$9;
5795
+ var toString$2 = toString$a;
5615
5796
  var defineProperty = objectDefineProperty.f;
5616
5797
  var copyConstructorProperties = copyConstructorProperties$2;
5617
5798
 
@@ -5760,9 +5941,9 @@ var getBuiltIn = getBuiltIn$6;
5760
5941
  var apply = functionApply;
5761
5942
  var call = functionCall;
5762
5943
  var uncurryThis$2 = functionUncurryThis;
5763
- var fails$2 = fails$k;
5944
+ var fails$2 = fails$l;
5764
5945
  var isArray = isArray$1;
5765
- var isCallable = isCallable$f;
5946
+ var isCallable = isCallable$g;
5766
5947
  var isObject = isObject$7;
5767
5948
  var isSymbol = isSymbol$3;
5768
5949
  var arraySlice$1 = arraySlice$2;
@@ -17327,7 +17508,7 @@ var merge = function (array, left, right, comparefn) {
17327
17508
 
17328
17509
  var arraySort = mergeSort;
17329
17510
 
17330
- var fails$1 = fails$k;
17511
+ var fails$1 = fails$l;
17331
17512
 
17332
17513
  var arrayMethodIsStrict$1 = function (METHOD_NAME, argument) {
17333
17514
  var method = [][METHOD_NAME];
@@ -17356,11 +17537,11 @@ var engineWebkitVersion = !!webkit && +webkit[1];
17356
17537
  var $$1 = _export;
17357
17538
  var uncurryThis$1 = functionUncurryThis;
17358
17539
  var aCallable = aCallable$2;
17359
- var toObject = toObject$2;
17540
+ var toObject = toObject$3;
17360
17541
  var lengthOfArrayLike = lengthOfArrayLike$3;
17361
17542
  var deletePropertyOrThrow = deletePropertyOrThrow$1;
17362
- var toString$1 = toString$9;
17363
- var fails = fails$k;
17543
+ var toString$1 = toString$a;
17544
+ var fails = fails$l;
17364
17545
  var internalSort = arraySort;
17365
17546
  var arrayMethodIsStrict = arrayMethodIsStrict$1;
17366
17547
  var FF = engineFfVersion;
@@ -17462,10 +17643,10 @@ $$1({ target: 'Array', proto: true, forced: FORCED }, {
17462
17643
  var $ = _export;
17463
17644
  var uncurryThis = functionUncurryThis;
17464
17645
  var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
17465
- var toLength = toLength$4;
17466
- var toString = toString$9;
17646
+ var toLength = toLength$5;
17647
+ var toString = toString$a;
17467
17648
  var notARegExp = notARegexp;
17468
- var requireObjectCoercible = requireObjectCoercible$8;
17649
+ var requireObjectCoercible = requireObjectCoercible$9;
17469
17650
  var correctIsRegExpLogic = correctIsRegexpLogic;
17470
17651
 
17471
17652
  // eslint-disable-next-line es-x/no-string-prototype-startswith -- safe