bhd-components 0.7.10 → 0.7.11

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.
@@ -2647,7 +2647,7 @@ var abs$1 = Math.abs;
2647
2647
  * @param {number}
2648
2648
  * @return {string}
2649
2649
  */
2650
- var from$1 = String.fromCharCode;
2650
+ var from = String.fromCharCode;
2651
2651
 
2652
2652
  /**
2653
2653
  * @param {string} value
@@ -2918,7 +2918,7 @@ function commenter (type, index) {
2918
2918
  else if (type + character === 42 + 42 && peek() === 47)
2919
2919
  break
2920
2920
 
2921
- return '/*' + slice$1(index, position - 1) + '*' + from$1(type === 47 ? type : next())
2921
+ return '/*' + slice$1(index, position - 1) + '*' + from(type === 47 ? type : next())
2922
2922
  }
2923
2923
 
2924
2924
  /**
@@ -3045,7 +3045,7 @@ function parse (value, root, parent, rule, rules, rulesets, pseudo, points, decl
3045
3045
  else if (character == 125 && variable++ == 0 && prev() == 125)
3046
3046
  continue
3047
3047
 
3048
- switch (characters += from$1(character), character * variable) {
3048
+ switch (characters += from(character), character * variable) {
3049
3049
  // &
3050
3050
  case 38:
3051
3051
  ampersand = offset > 0 ? 1 : (characters += '\f', -1);
@@ -3108,7 +3108,7 @@ function ruleset (value, root, parent, index, offset, rules, points, type, props
3108
3108
  * @return {object}
3109
3109
  */
3110
3110
  function comment$1 (value, root, parent, siblings) {
3111
- return node$1(value, root, parent, COMMENT$1, from$1(char()), substr(value, 2, -2), 0, siblings)
3111
+ return node$1(value, root, parent, COMMENT$1, from(char()), substr(value, 2, -2), 0, siblings)
3112
3112
  }
3113
3113
 
3114
3114
  /**
@@ -85143,13 +85143,13 @@ var objectAssign = !$assign || fails$D(function () {
85143
85143
  } return T;
85144
85144
  } : $assign;
85145
85145
 
85146
- var $$E = _export;
85146
+ var $$D = _export;
85147
85147
  var assign$2 = objectAssign;
85148
85148
 
85149
85149
  // `Object.assign` method
85150
85150
  // https://tc39.es/ecma262/#sec-object.assign
85151
85151
  // eslint-disable-next-line es/no-object-assign -- required for testing
85152
- $$E({ target: 'Object', stat: true, arity: 2, forced: Object.assign !== assign$2 }, {
85152
+ $$D({ target: 'Object', stat: true, arity: 2, forced: Object.assign !== assign$2 }, {
85153
85153
  assign: assign$2
85154
85154
  });
85155
85155
 
@@ -92225,7 +92225,7 @@ var arrayMethodHasSpeciesSupport$4 = function (METHOD_NAME) {
92225
92225
  });
92226
92226
  };
92227
92227
 
92228
- var $$D = _export;
92228
+ var $$C = _export;
92229
92229
  var $map$1 = arrayIteration.map;
92230
92230
  var arrayMethodHasSpeciesSupport$3 = arrayMethodHasSpeciesSupport$4;
92231
92231
 
@@ -92234,7 +92234,7 @@ var HAS_SPECIES_SUPPORT$2 = arrayMethodHasSpeciesSupport$3('map');
92234
92234
  // `Array.prototype.map` method
92235
92235
  // https://tc39.es/ecma262/#sec-array.prototype.map
92236
92236
  // with adding support of @@species
92237
- $$D({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT$2 }, {
92237
+ $$C({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT$2 }, {
92238
92238
  map: function map(callbackfn /* , thisArg */) {
92239
92239
  return $map$1(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
92240
92240
  }
@@ -92550,18 +92550,18 @@ if (PATCH) {
92550
92550
 
92551
92551
  var regexpExec$2 = patchedExec;
92552
92552
 
92553
- var $$C = _export;
92553
+ var $$B = _export;
92554
92554
  var exec$5 = regexpExec$2;
92555
92555
 
92556
92556
  // `RegExp.prototype.exec` method
92557
92557
  // https://tc39.es/ecma262/#sec-regexp.prototype.exec
92558
- $$C({ target: 'RegExp', proto: true, forced: /./.exec !== exec$5 }, {
92558
+ $$B({ target: 'RegExp', proto: true, forced: /./.exec !== exec$5 }, {
92559
92559
  exec: exec$5
92560
92560
  });
92561
92561
 
92562
92562
  // TODO: Remove from `core-js@4` since it's moved to entry points
92563
92563
 
92564
- var $$B = _export;
92564
+ var $$A = _export;
92565
92565
  var call$n = functionCall;
92566
92566
  var isCallable$h = isCallable$u;
92567
92567
  var anObject$f = anObject$l;
@@ -92581,7 +92581,7 @@ var nativeTest = /./.test;
92581
92581
 
92582
92582
  // `RegExp.prototype.test` method
92583
92583
  // https://tc39.es/ecma262/#sec-regexp.prototype.test
92584
- $$B({ target: 'RegExp', proto: true, forced: !DELEGATES_TO_EXEC }, {
92584
+ $$A({ target: 'RegExp', proto: true, forced: !DELEGATES_TO_EXEC }, {
92585
92585
  test: function (S) {
92586
92586
  var R = anObject$f(this);
92587
92587
  var string = toString$i(S);
@@ -92621,13 +92621,13 @@ var stringHtmlForced = function (METHOD_NAME) {
92621
92621
  });
92622
92622
  };
92623
92623
 
92624
- var $$A = _export;
92624
+ var $$z = _export;
92625
92625
  var createHTML = createHtml;
92626
92626
  var forcedStringHTMLMethod = stringHtmlForced;
92627
92627
 
92628
92628
  // `String.prototype.fixed` method
92629
92629
  // https://tc39.es/ecma262/#sec-string.prototype.fixed
92630
- $$A({ target: 'String', proto: true, forced: forcedStringHTMLMethod('fixed') }, {
92630
+ $$z({ target: 'String', proto: true, forced: forcedStringHTMLMethod('fixed') }, {
92631
92631
  fixed: function fixed() {
92632
92632
  return createHTML(this, 'tt', '', '');
92633
92633
  }
@@ -92651,7 +92651,7 @@ var createProperty$4 = function (object, key, value) {
92651
92651
  else object[propertyKey] = value;
92652
92652
  };
92653
92653
 
92654
- var $$z = _export;
92654
+ var $$y = _export;
92655
92655
  var fails$w = fails$M;
92656
92656
  var isArray$3 = isArray$5;
92657
92657
  var isObject$e = isObject$m;
@@ -92686,7 +92686,7 @@ var FORCED$8 = !IS_CONCAT_SPREADABLE_SUPPORT || !arrayMethodHasSpeciesSupport$2(
92686
92686
  // `Array.prototype.concat` method
92687
92687
  // https://tc39.es/ecma262/#sec-array.prototype.concat
92688
92688
  // with adding support of @@isConcatSpreadable and @@species
92689
- $$z({ target: 'Array', proto: true, arity: 1, forced: FORCED$8 }, {
92689
+ $$y({ target: 'Array', proto: true, arity: 1, forced: FORCED$8 }, {
92690
92690
  // eslint-disable-next-line no-unused-vars -- required for `.length`
92691
92691
  concat: function concat(arg) {
92692
92692
  var O = toObject$b(this);
@@ -93394,7 +93394,7 @@ var errorStackClear = function (stack, dropEntries) {
93394
93394
  } return stack;
93395
93395
  };
93396
93396
 
93397
- var $$y = _export;
93397
+ var $$x = _export;
93398
93398
  var tryNodeRequire = tryNodeRequire$1;
93399
93399
  var getBuiltIn$8 = getBuiltIn$d;
93400
93400
  var fails$t = fails$M;
@@ -93508,7 +93508,7 @@ var FORCED_CONSTRUCTOR$1 = INCORRECT_CONSTRUCTOR;
93508
93508
 
93509
93509
  // `DOMException` constructor
93510
93510
  // https://webidl.spec.whatwg.org/#idl-DOMException
93511
- $$y({ global: true, constructor: true, forced: FORCED_CONSTRUCTOR$1 }, {
93511
+ $$x({ global: true, constructor: true, forced: FORCED_CONSTRUCTOR$1 }, {
93512
93512
  DOMException: FORCED_CONSTRUCTOR$1 ? $DOMException$1 : NativeDOMException$1
93513
93513
  });
93514
93514
 
@@ -93605,7 +93605,7 @@ var inheritIfRequired$5 = function ($this, dummy, Wrapper) {
93605
93605
  return $this;
93606
93606
  };
93607
93607
 
93608
- var $$x = _export;
93608
+ var $$w = _export;
93609
93609
  var global$n = global$B;
93610
93610
  var getBuiltIn$7 = getBuiltIn$d;
93611
93611
  var createPropertyDescriptor$4 = createPropertyDescriptor$9;
@@ -93651,7 +93651,7 @@ var FORCED_CONSTRUCTOR = ERROR_HAS_STACK && !BUGGY_DESCRIPTOR && !DOM_EXCEPTION_
93651
93651
 
93652
93652
  // `DOMException` constructor patch for `.stack` where it's required
93653
93653
  // https://webidl.spec.whatwg.org/#es-DOMException-specialness
93654
- $$x({ global: true, constructor: true, forced: FORCED_CONSTRUCTOR }, { // TODO: fix export logic
93654
+ $$w({ global: true, constructor: true, forced: FORCED_CONSTRUCTOR }, { // TODO: fix export logic
93655
93655
  DOMException: FORCED_CONSTRUCTOR ? $DOMException : NativeDOMException
93656
93656
  });
93657
93657
 
@@ -93710,7 +93710,7 @@ var base64Map = {
93710
93710
  ctoi: ctoi$1
93711
93711
  };
93712
93712
 
93713
- var $$w = _export;
93713
+ var $$v = _export;
93714
93714
  var global$m = global$B;
93715
93715
  var getBuiltIn$5 = getBuiltIn$d;
93716
93716
  var uncurryThis$v = functionUncurryThis;
@@ -93747,7 +93747,7 @@ var WRONG_ARITY = !NO_SPACES_IGNORE && !NO_ENCODING_CHECK && $atob.length !== 1;
93747
93747
 
93748
93748
  // `atob` method
93749
93749
  // https://html.spec.whatwg.org/multipage/webappapis.html#dom-atob
93750
- $$w({ global: true, bind: true, enumerable: true, forced: NO_SPACES_IGNORE || NO_ENCODING_CHECK || NO_ARG_RECEIVING_CHECK || WRONG_ARITY }, {
93750
+ $$v({ global: true, bind: true, enumerable: true, forced: NO_SPACES_IGNORE || NO_ENCODING_CHECK || NO_ARG_RECEIVING_CHECK || WRONG_ARITY }, {
93751
93751
  atob: function atob(data) {
93752
93752
  validateArgumentsLength$3(arguments.length, 1);
93753
93753
  // `webpack` dev server bug on IE global methods - use call(fn, global, ...)
@@ -94747,7 +94747,7 @@ var iteratorCreateConstructor = function (IteratorConstructor, NAME, next, ENUME
94747
94747
  return IteratorConstructor;
94748
94748
  };
94749
94749
 
94750
- var $$v = _export;
94750
+ var $$u = _export;
94751
94751
  var call$g = functionCall;
94752
94752
  var FunctionName$1 = functionName;
94753
94753
  var isCallable$9 = isCallable$u;
@@ -94832,7 +94832,7 @@ var iteratorDefine = function (Iterable, NAME, IteratorConstructor, next, DEFAUL
94832
94832
  if (BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME || !(KEY in IterablePrototype)) {
94833
94833
  defineBuiltIn$7(IterablePrototype, KEY, methods[KEY]);
94834
94834
  }
94835
- } else $$v({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME }, methods);
94835
+ } else $$u({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME }, methods);
94836
94836
  }
94837
94837
 
94838
94838
  // define iterator
@@ -95578,7 +95578,7 @@ try {
95578
95578
  Array.from(iteratorWithReturn, function () { throw 2; });
95579
95579
  } catch (error) { /* empty */ }
95580
95580
 
95581
- var checkCorrectnessOfIteration$4 = function (exec, SKIP_CLOSING) {
95581
+ var checkCorrectnessOfIteration$3 = function (exec, SKIP_CLOSING) {
95582
95582
  if (!SKIP_CLOSING && !SAFE_CLOSING) return false;
95583
95583
  var ITERATION_SUPPORT = false;
95584
95584
  try {
@@ -95599,7 +95599,7 @@ var checkCorrectnessOfIteration$4 = function (exec, SKIP_CLOSING) {
95599
95599
 
95600
95600
  var global$f = global$B;
95601
95601
  var fails$f = fails$M;
95602
- var checkCorrectnessOfIteration$3 = checkCorrectnessOfIteration$4;
95602
+ var checkCorrectnessOfIteration$2 = checkCorrectnessOfIteration$3;
95603
95603
  var NATIVE_ARRAY_BUFFER_VIEWS$1 = arrayBufferViewCore.NATIVE_ARRAY_BUFFER_VIEWS;
95604
95604
 
95605
95605
  var ArrayBuffer$2 = global$f.ArrayBuffer;
@@ -95609,7 +95609,7 @@ var typedArrayConstructorsRequireWrappers = !NATIVE_ARRAY_BUFFER_VIEWS$1 || !fai
95609
95609
  Int8Array$1(1);
95610
95610
  }) || !fails$f(function () {
95611
95611
  new Int8Array$1(-1);
95612
- }) || !checkCorrectnessOfIteration$3(function (iterable) {
95612
+ }) || !checkCorrectnessOfIteration$2(function (iterable) {
95613
95613
  new Int8Array$1();
95614
95614
  new Int8Array$1(null);
95615
95615
  new Int8Array$1(1.5);
@@ -96114,7 +96114,7 @@ var setSpecies$4 = function (CONSTRUCTOR_NAME) {
96114
96114
  }
96115
96115
  };
96116
96116
 
96117
- var $$u = _export;
96117
+ var $$t = _export;
96118
96118
  var global$d = global$B;
96119
96119
  var call$c = functionCall;
96120
96120
  var DESCRIPTORS$b = descriptors;
@@ -96230,7 +96230,7 @@ if (DESCRIPTORS$b) {
96230
96230
  addGetter(TypedArrayPrototype, 'length');
96231
96231
  }
96232
96232
 
96233
- $$u({ target: 'Object', stat: true, forced: !NATIVE_ARRAY_BUFFER_VIEWS }, {
96233
+ $$t({ target: 'Object', stat: true, forced: !NATIVE_ARRAY_BUFFER_VIEWS }, {
96234
96234
  getOwnPropertyDescriptor: wrappedGetOwnPropertyDescriptor,
96235
96235
  defineProperty: wrappedDefineProperty
96236
96236
  });
@@ -96346,7 +96346,7 @@ if (DESCRIPTORS$b) {
96346
96346
 
96347
96347
  exported[CONSTRUCTOR_NAME] = TypedArrayConstructor;
96348
96348
 
96349
- $$u({ global: true, constructor: true, forced: FORCED, sham: !NATIVE_ARRAY_BUFFER_VIEWS }, exported);
96349
+ $$t({ global: true, constructor: true, forced: FORCED, sham: !NATIVE_ARRAY_BUFFER_VIEWS }, exported);
96350
96350
 
96351
96351
  if (!(BYTES_PER_ELEMENT in TypedArrayConstructor)) {
96352
96352
  createNonEnumerableProperty$6(TypedArrayConstructor, BYTES_PER_ELEMENT, BYTES);
@@ -96707,7 +96707,7 @@ var stringPunycodeToAscii = function (input) {
96707
96707
 
96708
96708
  // TODO: in core-js@4, move /modules/ dependencies to public entries for better optimization by tools like `preset-env`
96709
96709
 
96710
- var $$t = _export;
96710
+ var $$s = _export;
96711
96711
  var global$c = global$B;
96712
96712
  var call$9 = functionCall;
96713
96713
  var uncurryThis$g = functionUncurryThis;
@@ -97066,7 +97066,7 @@ if (DESCRIPTORS$9) defineBuiltInAccessor$6(URLSearchParamsPrototype$1, 'size', {
97066
97066
 
97067
97067
  setToStringTag$3(URLSearchParamsConstructor, URL_SEARCH_PARAMS);
97068
97068
 
97069
- $$t({ global: true, constructor: true, forced: !USE_NATIVE_URL$1 }, {
97069
+ $$s({ global: true, constructor: true, forced: !USE_NATIVE_URL$1 }, {
97070
97070
  URLSearchParams: URLSearchParamsConstructor
97071
97071
  });
97072
97072
 
@@ -97093,7 +97093,7 @@ if (!USE_NATIVE_URL$1 && isCallable$8(Headers)) {
97093
97093
  };
97094
97094
 
97095
97095
  if (isCallable$8(nativeFetch)) {
97096
- $$t({ global: true, enumerable: true, dontCallGetSet: true, forced: true }, {
97096
+ $$s({ global: true, enumerable: true, dontCallGetSet: true, forced: true }, {
97097
97097
  fetch: function fetch(input /* , init */) {
97098
97098
  return nativeFetch(input, arguments.length > 1 ? wrapRequestOptions(arguments[1]) : {});
97099
97099
  }
@@ -97109,7 +97109,7 @@ if (!USE_NATIVE_URL$1 && isCallable$8(Headers)) {
97109
97109
  RequestPrototype.constructor = RequestConstructor;
97110
97110
  RequestConstructor.prototype = RequestPrototype;
97111
97111
 
97112
- $$t({ global: true, constructor: true, dontCallGetSet: true, forced: true }, {
97112
+ $$s({ global: true, constructor: true, dontCallGetSet: true, forced: true }, {
97113
97113
  Request: RequestConstructor
97114
97114
  });
97115
97115
  }
@@ -97122,7 +97122,7 @@ var web_urlSearchParams_constructor = {
97122
97122
 
97123
97123
  // TODO: in core-js@4, move /modules/ dependencies to public entries for better optimization by tools like `preset-env`
97124
97124
 
97125
- var $$s = _export;
97125
+ var $$r = _export;
97126
97126
  var DESCRIPTORS$8 = descriptors;
97127
97127
  var USE_NATIVE_URL = urlConstructorDetection;
97128
97128
  var global$b = global$B;
@@ -98160,7 +98160,7 @@ if (NativeURL) {
98160
98160
 
98161
98161
  setToStringTag$2(URLConstructor, 'URL');
98162
98162
 
98163
- $$s({ global: true, constructor: true, forced: !USE_NATIVE_URL, sham: !DESCRIPTORS$8 }, {
98163
+ $$r({ global: true, constructor: true, forced: !USE_NATIVE_URL, sham: !DESCRIPTORS$8 }, {
98164
98164
  URL: URLConstructor
98165
98165
  });
98166
98166
 
@@ -98269,7 +98269,7 @@ for (var COLLECTION_NAME$1 in DOMIterables$1) {
98269
98269
  handlePrototype$1(DOMTokenListPrototype$1, 'DOMTokenList');
98270
98270
 
98271
98271
  /* eslint-disable es/no-array-prototype-indexof -- required for testing */
98272
- var $$r = _export;
98272
+ var $$q = _export;
98273
98273
  var uncurryThis$d = functionUncurryThisClause;
98274
98274
  var $indexOf = arrayIncludes.indexOf;
98275
98275
  var arrayMethodIsStrict$3 = arrayMethodIsStrict$5;
@@ -98281,7 +98281,7 @@ var FORCED$4 = NEGATIVE_ZERO || !arrayMethodIsStrict$3('indexOf');
98281
98281
 
98282
98282
  // `Array.prototype.indexOf` method
98283
98283
  // https://tc39.es/ecma262/#sec-array.prototype.indexof
98284
- $$r({ target: 'Array', proto: true, forced: FORCED$4 }, {
98284
+ $$q({ target: 'Array', proto: true, forced: FORCED$4 }, {
98285
98285
  indexOf: function indexOf(searchElement /* , fromIndex = 0 */) {
98286
98286
  var fromIndex = arguments.length > 1 ? arguments[1] : undefined;
98287
98287
  return NEGATIVE_ZERO
@@ -98291,7 +98291,7 @@ $$r({ target: 'Array', proto: true, forced: FORCED$4 }, {
98291
98291
  }
98292
98292
  });
98293
98293
 
98294
- var $$q = _export;
98294
+ var $$p = _export;
98295
98295
  var $filter = arrayIteration.filter;
98296
98296
  var arrayMethodHasSpeciesSupport$1 = arrayMethodHasSpeciesSupport$4;
98297
98297
 
@@ -98300,13 +98300,13 @@ var HAS_SPECIES_SUPPORT$1 = arrayMethodHasSpeciesSupport$1('filter');
98300
98300
  // `Array.prototype.filter` method
98301
98301
  // https://tc39.es/ecma262/#sec-array.prototype.filter
98302
98302
  // with adding support of @@species
98303
- $$q({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT$1 }, {
98303
+ $$p({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT$1 }, {
98304
98304
  filter: function filter(callbackfn /* , thisArg */) {
98305
98305
  return $filter(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
98306
98306
  }
98307
98307
  });
98308
98308
 
98309
- var $$p = _export;
98309
+ var $$o = _export;
98310
98310
  var $includes = arrayIncludes.includes;
98311
98311
  var fails$c = fails$M;
98312
98312
  var addToUnscopables$2 = addToUnscopables$4;
@@ -98319,7 +98319,7 @@ var BROKEN_ON_SPARSE = fails$c(function () {
98319
98319
 
98320
98320
  // `Array.prototype.includes` method
98321
98321
  // https://tc39.es/ecma262/#sec-array.prototype.includes
98322
- $$p({ target: 'Array', proto: true, forced: BROKEN_ON_SPARSE }, {
98322
+ $$o({ target: 'Array', proto: true, forced: BROKEN_ON_SPARSE }, {
98323
98323
  includes: function includes(el /* , fromIndex = 0 */) {
98324
98324
  return $includes(this, el, arguments.length > 1 ? arguments[1] : undefined);
98325
98325
  }
@@ -98367,7 +98367,7 @@ var correctIsRegexpLogic = function (METHOD_NAME) {
98367
98367
  } return false;
98368
98368
  };
98369
98369
 
98370
- var $$o = _export;
98370
+ var $$n = _export;
98371
98371
  var uncurryThis$c = functionUncurryThis;
98372
98372
  var notARegExp$1 = notARegexp;
98373
98373
  var requireObjectCoercible$7 = requireObjectCoercible$d;
@@ -98378,7 +98378,7 @@ var stringIndexOf$2 = uncurryThis$c(''.indexOf);
98378
98378
 
98379
98379
  // `String.prototype.includes` method
98380
98380
  // https://tc39.es/ecma262/#sec-string.prototype.includes
98381
- $$o({ target: 'String', proto: true, forced: !correctIsRegExpLogic$1('includes') }, {
98381
+ $$n({ target: 'String', proto: true, forced: !correctIsRegExpLogic$1('includes') }, {
98382
98382
  includes: function includes(searchString /* , position = 0 */) {
98383
98383
  return !!~stringIndexOf$2(
98384
98384
  toString$a(requireObjectCoercible$7(this)),
@@ -98388,7 +98388,7 @@ $$o({ target: 'String', proto: true, forced: !correctIsRegExpLogic$1('includes')
98388
98388
  }
98389
98389
  });
98390
98390
 
98391
- var $$n = _export;
98391
+ var $$m = _export;
98392
98392
  var uncurryThis$b = functionUncurryThis;
98393
98393
  var aCallable$4 = aCallable$c;
98394
98394
  var toObject$2 = toObject$f;
@@ -98466,7 +98466,7 @@ var getSortCompare = function (comparefn) {
98466
98466
 
98467
98467
  // `Array.prototype.sort` method
98468
98468
  // https://tc39.es/ecma262/#sec-array.prototype.sort
98469
- $$n({ target: 'Array', proto: true, forced: FORCED$3 }, {
98469
+ $$m({ target: 'Array', proto: true, forced: FORCED$3 }, {
98470
98470
  sort: function sort(comparefn) {
98471
98471
  if (comparefn !== undefined) aCallable$4(comparefn);
98472
98472
 
@@ -98558,7 +98558,7 @@ function _to_consumable_array(arr) {
98558
98558
  return _array_without_holes(arr) || _iterable_to_array(arr) || _unsupported_iterable_to_array(arr) || _non_iterable_spread();
98559
98559
  }
98560
98560
 
98561
- var $$m = _export;
98561
+ var $$l = _export;
98562
98562
  var call$7 = functionCall;
98563
98563
  var uncurryThis$a = functionUncurryThis;
98564
98564
  var requireObjectCoercible$5 = requireObjectCoercible$d;
@@ -98586,7 +98586,7 @@ var stringIndexOf$1 = function (string, searchValue, fromIndex) {
98586
98586
 
98587
98587
  // `String.prototype.replaceAll` method
98588
98588
  // https://tc39.es/ecma262/#sec-string.prototype.replaceall
98589
- $$m({ target: 'String', proto: true }, {
98589
+ $$l({ target: 'String', proto: true }, {
98590
98590
  replaceAll: function replaceAll(searchValue, replaceValue) {
98591
98591
  var O = requireObjectCoercible$5(this);
98592
98592
  var IS_REG_EXP, flags, replacer, string, searchString, functionalReplace, searchLength, advanceBy, replacement;
@@ -98906,7 +98906,7 @@ var arraySetLength = SILENT_ON_NON_WRITABLE_LENGTH_SET ? function (O, length) {
98906
98906
  return O.length = length;
98907
98907
  };
98908
98908
 
98909
- var $$l = _export;
98909
+ var $$k = _export;
98910
98910
  var toObject$1 = toObject$f;
98911
98911
  var lengthOfArrayLike$2 = lengthOfArrayLike$k;
98912
98912
  var setArrayLength = arraySetLength;
@@ -98932,7 +98932,7 @@ var FORCED$2 = INCORRECT_TO_LENGTH || !properErrorOnNonWritableLength();
98932
98932
 
98933
98933
  // `Array.prototype.push` method
98934
98934
  // https://tc39.es/ecma262/#sec-array.prototype.push
98935
- $$l({ target: 'Array', proto: true, arity: 1, forced: FORCED$2 }, {
98935
+ $$k({ target: 'Array', proto: true, arity: 1, forced: FORCED$2 }, {
98936
98936
  // eslint-disable-next-line no-unused-vars -- required for `.length`
98937
98937
  push: function push(item) {
98938
98938
  var O = toObject$1(this);
@@ -98978,7 +98978,7 @@ var getJsonReplacerFunction = function (replacer) {
98978
98978
  };
98979
98979
  };
98980
98980
 
98981
- var $$k = _export;
98981
+ var $$j = _export;
98982
98982
  var getBuiltIn$3 = getBuiltIn$d;
98983
98983
  var apply$2 = functionApply;
98984
98984
  var call$6 = functionCall;
@@ -99041,7 +99041,7 @@ var fixIllFormed = function (match, offset, string) {
99041
99041
  if ($stringify) {
99042
99042
  // `JSON.stringify` method
99043
99043
  // https://tc39.es/ecma262/#sec-json.stringify
99044
- $$k({ target: 'JSON', stat: true, arity: 3, forced: WRONG_SYMBOLS_CONVERSION || ILL_FORMED_UNICODE }, {
99044
+ $$j({ target: 'JSON', stat: true, arity: 3, forced: WRONG_SYMBOLS_CONVERSION || ILL_FORMED_UNICODE }, {
99045
99045
  // eslint-disable-next-line no-unused-vars -- required for `.length`
99046
99046
  stringify: function stringify(it, replacer, space) {
99047
99047
  var args = arraySlice$2(arguments);
@@ -99051,7 +99051,7 @@ if ($stringify) {
99051
99051
  });
99052
99052
  }
99053
99053
 
99054
- var $$j = _export;
99054
+ var $$i = _export;
99055
99055
  var $find = arrayIteration.find;
99056
99056
  var addToUnscopables$1 = addToUnscopables$4;
99057
99057
 
@@ -99064,7 +99064,7 @@ if (FIND in []) Array(1)[FIND](function () { SKIPS_HOLES$1 = false; });
99064
99064
 
99065
99065
  // `Array.prototype.find` method
99066
99066
  // https://tc39.es/ecma262/#sec-array.prototype.find
99067
- $$j({ target: 'Array', proto: true, forced: SKIPS_HOLES$1 }, {
99067
+ $$i({ target: 'Array', proto: true, forced: SKIPS_HOLES$1 }, {
99068
99068
  find: function find(callbackfn /* , that = undefined */) {
99069
99069
  return $find(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
99070
99070
  }
@@ -99073,7 +99073,7 @@ $$j({ target: 'Array', proto: true, forced: SKIPS_HOLES$1 }, {
99073
99073
  // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
99074
99074
  addToUnscopables$1(FIND);
99075
99075
 
99076
- var $$i = _export;
99076
+ var $$h = _export;
99077
99077
  var toObject = toObject$f;
99078
99078
  var nativeKeys = objectKeys$2;
99079
99079
  var fails$7 = fails$M;
@@ -99082,7 +99082,7 @@ var FAILS_ON_PRIMITIVES$1 = fails$7(function () { nativeKeys(1); });
99082
99082
 
99083
99083
  // `Object.keys` method
99084
99084
  // https://tc39.es/ecma262/#sec-object.keys
99085
- $$i({ target: 'Object', stat: true, forced: FAILS_ON_PRIMITIVES$1 }, {
99085
+ $$h({ target: 'Object', stat: true, forced: FAILS_ON_PRIMITIVES$1 }, {
99086
99086
  keys: function keys(it) {
99087
99087
  return nativeKeys(toObject(it));
99088
99088
  }
@@ -99152,7 +99152,7 @@ var freezing = !fails$4(function () {
99152
99152
  return Object.isExtensible(Object.preventExtensions({}));
99153
99153
  });
99154
99154
 
99155
- var $$h = _export;
99155
+ var $$g = _export;
99156
99156
  var uncurryThis$6 = functionUncurryThis;
99157
99157
  var hiddenKeys = hiddenKeys$5;
99158
99158
  var isObject$5 = isObject$m;
@@ -99227,7 +99227,7 @@ var enable = function () {
99227
99227
  } return result;
99228
99228
  };
99229
99229
 
99230
- $$h({ target: 'Object', stat: true, forced: true }, {
99230
+ $$g({ target: 'Object', stat: true, forced: true }, {
99231
99231
  getOwnPropertyNames: getOwnPropertyNamesExternalModule.f
99232
99232
  });
99233
99233
  }
@@ -99313,7 +99313,7 @@ var iterate$4 = function (iterable, unboundFunction, options) {
99313
99313
  } return new Result(false);
99314
99314
  };
99315
99315
 
99316
- var $$g = _export;
99316
+ var $$f = _export;
99317
99317
  var global$8 = global$B;
99318
99318
  var uncurryThis$5 = functionUncurryThis;
99319
99319
  var isForced$1 = isForced_1;
@@ -99325,11 +99325,11 @@ var isCallable$4 = isCallable$u;
99325
99325
  var isNullOrUndefined$2 = isNullOrUndefined$a;
99326
99326
  var isObject$4 = isObject$m;
99327
99327
  var fails$3 = fails$M;
99328
- var checkCorrectnessOfIteration$2 = checkCorrectnessOfIteration$4;
99328
+ var checkCorrectnessOfIteration$1 = checkCorrectnessOfIteration$3;
99329
99329
  var setToStringTag$1 = setToStringTag$8;
99330
99330
  var inheritIfRequired$1 = inheritIfRequired$5;
99331
99331
 
99332
- var collection$2 = function (CONSTRUCTOR_NAME, wrapper, common) {
99332
+ var collection$1 = function (CONSTRUCTOR_NAME, wrapper, common) {
99333
99333
  var IS_MAP = CONSTRUCTOR_NAME.indexOf('Map') !== -1;
99334
99334
  var IS_WEAK = CONSTRUCTOR_NAME.indexOf('Weak') !== -1;
99335
99335
  var ADDER = IS_MAP ? 'set' : 'add';
@@ -99376,7 +99376,7 @@ var collection$2 = function (CONSTRUCTOR_NAME, wrapper, common) {
99376
99376
  var THROWS_ON_PRIMITIVES = fails$3(function () { instance.has(1); });
99377
99377
  // most early implementations doesn't supports iterables, most modern - not close it correctly
99378
99378
  // eslint-disable-next-line no-new -- required for testing
99379
- var ACCEPT_ITERABLES = checkCorrectnessOfIteration$2(function (iterable) { new NativeConstructor(iterable); });
99379
+ var ACCEPT_ITERABLES = checkCorrectnessOfIteration$1(function (iterable) { new NativeConstructor(iterable); });
99380
99380
  // for early implementations -0 and +0 not the same
99381
99381
  var BUGGY_ZERO = !IS_WEAK && fails$3(function () {
99382
99382
  // V8 ~ Chromium 42- fails only with 5+ elements
@@ -99410,7 +99410,7 @@ var collection$2 = function (CONSTRUCTOR_NAME, wrapper, common) {
99410
99410
  }
99411
99411
 
99412
99412
  exported[CONSTRUCTOR_NAME] = Constructor;
99413
- $$g({ global: true, constructor: true, forced: Constructor != NativeConstructor }, exported);
99413
+ $$f({ global: true, constructor: true, forced: Constructor != NativeConstructor }, exported);
99414
99414
 
99415
99415
  setToStringTag$1(Constructor, CONSTRUCTOR_NAME);
99416
99416
 
@@ -99436,7 +99436,7 @@ var InternalStateModule$1 = internalState;
99436
99436
  var setInternalState$1 = InternalStateModule$1.set;
99437
99437
  var internalStateGetterFor = InternalStateModule$1.getterFor;
99438
99438
 
99439
- var collectionStrong$2 = {
99439
+ var collectionStrong$1 = {
99440
99440
  getConstructor: function (wrapper, CONSTRUCTOR_NAME, IS_MAP, ADDER) {
99441
99441
  var Constructor = wrapper(function (that, iterable) {
99442
99442
  anInstance$1(that, Prototype);
@@ -99626,14 +99626,14 @@ var collectionStrong$2 = {
99626
99626
  }
99627
99627
  };
99628
99628
 
99629
- var collection$1 = collection$2;
99630
- var collectionStrong$1 = collectionStrong$2;
99629
+ var collection = collection$1;
99630
+ var collectionStrong = collectionStrong$1;
99631
99631
 
99632
99632
  // `Map` constructor
99633
99633
  // https://tc39.es/ecma262/#sec-map-objects
99634
- collection$1('Map', function (init) {
99634
+ collection('Map', function (init) {
99635
99635
  return function Map() { return init(this, arguments.length ? arguments[0] : undefined); };
99636
- }, collectionStrong$1);
99636
+ }, collectionStrong);
99637
99637
 
99638
99638
  var $forEach = arrayIteration.forEach;
99639
99639
  var arrayMethodIsStrict$1 = arrayMethodIsStrict$5;
@@ -99670,7 +99670,7 @@ for (var COLLECTION_NAME in DOMIterables) {
99670
99670
 
99671
99671
  handlePrototype(DOMTokenListPrototype);
99672
99672
 
99673
- var $$f = _export;
99673
+ var $$e = _export;
99674
99674
  var isArray = isArray$5;
99675
99675
  var isConstructor = isConstructor$4;
99676
99676
  var isObject$3 = isObject$m;
@@ -99691,7 +99691,7 @@ var max = Math.max;
99691
99691
  // `Array.prototype.slice` method
99692
99692
  // https://tc39.es/ecma262/#sec-array.prototype.slice
99693
99693
  // fallback for not array-like ES3 strings and DOM objects
99694
- $$f({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT }, {
99694
+ $$e({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT }, {
99695
99695
  slice: function slice(start, end) {
99696
99696
  var O = toIndexedObject$1(this);
99697
99697
  var length = lengthOfArrayLike(O);
@@ -99719,30 +99719,6 @@ $$f({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT }, {
99719
99719
  }
99720
99720
  });
99721
99721
 
99722
- var $$e = _export;
99723
- var from = arrayFrom$1;
99724
- var checkCorrectnessOfIteration$1 = checkCorrectnessOfIteration$4;
99725
-
99726
- var INCORRECT_ITERATION = !checkCorrectnessOfIteration$1(function (iterable) {
99727
- // eslint-disable-next-line es/no-array-from -- required for testing
99728
- Array.from(iterable);
99729
- });
99730
-
99731
- // `Array.from` method
99732
- // https://tc39.es/ecma262/#sec-array.from
99733
- $$e({ target: 'Array', stat: true, forced: INCORRECT_ITERATION }, {
99734
- from: from
99735
- });
99736
-
99737
- var collection = collection$2;
99738
- var collectionStrong = collectionStrong$2;
99739
-
99740
- // `Set` constructor
99741
- // https://tc39.es/ecma262/#sec-set-objects
99742
- collection('Set', function (init) {
99743
- return function Set() { return init(this, arguments.length ? arguments[0] : undefined); };
99744
- }, collectionStrong);
99745
-
99746
99722
  var DESCRIPTORS$1 = descriptors;
99747
99723
  var FUNCTION_NAME_EXISTS = functionName.EXISTS;
99748
99724
  var uncurryThis$4 = functionUncurryThis;
@@ -100410,7 +100386,7 @@ setToStringTag(PromiseConstructor, PROMISE, false);
100410
100386
  setSpecies(PROMISE);
100411
100387
 
100412
100388
  var NativePromiseConstructor$1 = promiseNativeConstructor;
100413
- var checkCorrectnessOfIteration = checkCorrectnessOfIteration$4;
100389
+ var checkCorrectnessOfIteration = checkCorrectnessOfIteration$3;
100414
100390
  var FORCED_PROMISE_CONSTRUCTOR$3 = promiseConstructorDetection.CONSTRUCTOR;
100415
100391
 
100416
100392
  var promiseStaticsIncorrectIteration = FORCED_PROMISE_CONSTRUCTOR$3 || !checkCorrectnessOfIteration(function (iterable) {
@@ -120892,7 +120868,7 @@ function requireD () {
120892
120868
  + 'pragma private protected public pure ref return scope shared static struct '
120893
120869
  + 'super switch synchronized template this throw try typedef typeid typeof union '
120894
120870
  + 'unittest version void volatile while with __FILE__ __LINE__ __gshared|10 '
120895
- + '__thread __traits __DATE__ __EOF__ __TIME__ __TIMESTAMP__ __VENDOR__ "0.7.10"',
120871
+ + '__thread __traits __DATE__ __EOF__ __TIME__ __TIMESTAMP__ __VENDOR__ "0.7.11"',
120896
120872
  built_in:
120897
120873
  'bool cdouble cent cfloat char creal dchar delegate double dstring float function '
120898
120874
  + 'idouble ifloat ireal long real short string ubyte ucent uint ulong ushort wchar '