bhd-components 0.10.37 → 0.10.38

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.
@@ -99084,8 +99084,257 @@ fixRegExpWellKnownSymbolLogic$2('search', function (SEARCH, nativeSearch, maybeC
99084
99084
  ];
99085
99085
  });
99086
99086
 
99087
- var call$8 = functionCall;
99087
+ var DESCRIPTORS$7 = descriptors;
99088
+ var globalThis$a = globalThis_1;
99088
99089
  var uncurryThis$d = functionUncurryThis;
99090
+ var isForced$3 = isForced_1;
99091
+ var inheritIfRequired$2 = inheritIfRequired$7;
99092
+ var createNonEnumerableProperty = createNonEnumerableProperty$c;
99093
+ var create$1 = objectCreate;
99094
+ var getOwnPropertyNames$1 = objectGetOwnPropertyNames.f;
99095
+ var isPrototypeOf$2 = objectIsPrototypeOf;
99096
+ var isRegExp$1 = isRegexp;
99097
+ var toString$8 = toString$n;
99098
+ var getRegExpFlags$1 = regexpGetFlags;
99099
+ var stickyHelpers$1 = regexpStickyHelpers;
99100
+ var proxyAccessor = proxyAccessor$2;
99101
+ var defineBuiltIn$3 = defineBuiltIn$h;
99102
+ var fails$b = fails$O;
99103
+ var hasOwn$5 = hasOwnProperty_1;
99104
+ var enforceInternalState = internalState.enforce;
99105
+ var setSpecies$2 = setSpecies$4;
99106
+ var wellKnownSymbol$3 = wellKnownSymbol$s;
99107
+ var UNSUPPORTED_DOT_ALL$1 = regexpUnsupportedDotAll;
99108
+ var UNSUPPORTED_NCG = regexpUnsupportedNcg;
99109
+
99110
+ var MATCH = wellKnownSymbol$3('match');
99111
+ var NativeRegExp = globalThis$a.RegExp;
99112
+ var RegExpPrototype$2 = NativeRegExp.prototype;
99113
+ var SyntaxError$1 = globalThis$a.SyntaxError;
99114
+ var exec$1 = uncurryThis$d(RegExpPrototype$2.exec);
99115
+ var charAt$1 = uncurryThis$d(''.charAt);
99116
+ var replace$4 = uncurryThis$d(''.replace);
99117
+ var stringIndexOf = uncurryThis$d(''.indexOf);
99118
+ var stringSlice$5 = uncurryThis$d(''.slice);
99119
+ // TODO: Use only proper RegExpIdentifierName
99120
+ var IS_NCG = /^\?<[^\s\d!#%&*+<=>@^][^\s!#%&*+<=>@^]*>/;
99121
+ var re1 = /a/g;
99122
+ var re2 = /a/g;
99123
+
99124
+ // "new" should create a new object, old webkit bug
99125
+ var CORRECT_NEW = new NativeRegExp(re1) !== re1;
99126
+
99127
+ var MISSED_STICKY$1 = stickyHelpers$1.MISSED_STICKY;
99128
+ var UNSUPPORTED_Y$1 = stickyHelpers$1.UNSUPPORTED_Y;
99129
+
99130
+ var BASE_FORCED = DESCRIPTORS$7 &&
99131
+ (!CORRECT_NEW || MISSED_STICKY$1 || UNSUPPORTED_DOT_ALL$1 || UNSUPPORTED_NCG || fails$b(function () {
99132
+ re2[MATCH] = false;
99133
+ // RegExp constructor can alter flags and IsRegExp works correct with @@match
99134
+ // eslint-disable-next-line sonar/inconsistent-function-call -- required for testing
99135
+ return NativeRegExp(re1) !== re1 || NativeRegExp(re2) === re2 || String(NativeRegExp(re1, 'i')) !== '/a/i';
99136
+ }));
99137
+
99138
+ var handleDotAll = function (string) {
99139
+ var length = string.length;
99140
+ var index = 0;
99141
+ var result = '';
99142
+ var brackets = false;
99143
+ var chr;
99144
+ for (; index <= length; index++) {
99145
+ chr = charAt$1(string, index);
99146
+ if (chr === '\\') {
99147
+ result += chr + charAt$1(string, ++index);
99148
+ continue;
99149
+ }
99150
+ if (!brackets && chr === '.') {
99151
+ result += '[\\s\\S]';
99152
+ } else {
99153
+ if (chr === '[') {
99154
+ brackets = true;
99155
+ } else if (chr === ']') {
99156
+ brackets = false;
99157
+ } result += chr;
99158
+ }
99159
+ } return result;
99160
+ };
99161
+
99162
+ var handleNCG = function (string) {
99163
+ var length = string.length;
99164
+ var index = 0;
99165
+ var result = '';
99166
+ var named = [];
99167
+ var names = create$1(null);
99168
+ var brackets = false;
99169
+ var ncg = false;
99170
+ var groupid = 0;
99171
+ var groupname = '';
99172
+ var chr;
99173
+ for (; index <= length; index++) {
99174
+ chr = charAt$1(string, index);
99175
+ if (chr === '\\') {
99176
+ chr += charAt$1(string, ++index);
99177
+ } else if (chr === ']') {
99178
+ brackets = false;
99179
+ } else if (!brackets) switch (true) {
99180
+ case chr === '[':
99181
+ brackets = true;
99182
+ break;
99183
+ case chr === '(':
99184
+ result += chr;
99185
+ // ignore non-capturing groups
99186
+ if (stringSlice$5(string, index + 1, index + 3) === '?:') {
99187
+ continue;
99188
+ }
99189
+ if (exec$1(IS_NCG, stringSlice$5(string, index + 1))) {
99190
+ index += 2;
99191
+ ncg = true;
99192
+ }
99193
+ groupid++;
99194
+ continue;
99195
+ case chr === '>' && ncg:
99196
+ if (groupname === '' || hasOwn$5(names, groupname)) {
99197
+ throw new SyntaxError$1('Invalid capture group name');
99198
+ }
99199
+ names[groupname] = true;
99200
+ named[named.length] = [groupname, groupid];
99201
+ ncg = false;
99202
+ groupname = '';
99203
+ continue;
99204
+ }
99205
+ if (ncg) groupname += chr;
99206
+ else result += chr;
99207
+ } return [result, named];
99208
+ };
99209
+
99210
+ // `RegExp` constructor
99211
+ // https://tc39.es/ecma262/#sec-regexp-constructor
99212
+ if (isForced$3('RegExp', BASE_FORCED)) {
99213
+ var RegExpWrapper = function RegExp(pattern, flags) {
99214
+ var thisIsRegExp = isPrototypeOf$2(RegExpPrototype$2, this);
99215
+ var patternIsRegExp = isRegExp$1(pattern);
99216
+ var flagsAreUndefined = flags === undefined;
99217
+ var groups = [];
99218
+ var rawPattern = pattern;
99219
+ var rawFlags, dotAll, sticky, handled, result, state;
99220
+
99221
+ if (!thisIsRegExp && patternIsRegExp && flagsAreUndefined && pattern.constructor === RegExpWrapper) {
99222
+ return pattern;
99223
+ }
99224
+
99225
+ if (patternIsRegExp || isPrototypeOf$2(RegExpPrototype$2, pattern)) {
99226
+ pattern = pattern.source;
99227
+ if (flagsAreUndefined) flags = getRegExpFlags$1(rawPattern);
99228
+ }
99229
+
99230
+ pattern = pattern === undefined ? '' : toString$8(pattern);
99231
+ flags = flags === undefined ? '' : toString$8(flags);
99232
+ rawPattern = pattern;
99233
+
99234
+ if (UNSUPPORTED_DOT_ALL$1 && 'dotAll' in re1) {
99235
+ dotAll = !!flags && stringIndexOf(flags, 's') > -1;
99236
+ if (dotAll) flags = replace$4(flags, /s/g, '');
99237
+ }
99238
+
99239
+ rawFlags = flags;
99240
+
99241
+ if (MISSED_STICKY$1 && 'sticky' in re1) {
99242
+ sticky = !!flags && stringIndexOf(flags, 'y') > -1;
99243
+ if (sticky && UNSUPPORTED_Y$1) flags = replace$4(flags, /y/g, '');
99244
+ }
99245
+
99246
+ if (UNSUPPORTED_NCG) {
99247
+ handled = handleNCG(pattern);
99248
+ pattern = handled[0];
99249
+ groups = handled[1];
99250
+ }
99251
+
99252
+ result = inheritIfRequired$2(NativeRegExp(pattern, flags), thisIsRegExp ? this : RegExpPrototype$2, RegExpWrapper);
99253
+
99254
+ if (dotAll || sticky || groups.length) {
99255
+ state = enforceInternalState(result);
99256
+ if (dotAll) {
99257
+ state.dotAll = true;
99258
+ state.raw = RegExpWrapper(handleDotAll(pattern), rawFlags);
99259
+ }
99260
+ if (sticky) state.sticky = true;
99261
+ if (groups.length) state.groups = groups;
99262
+ }
99263
+
99264
+ if (pattern !== rawPattern) try {
99265
+ // fails in old engines, but we have no alternatives for unsupported regex syntax
99266
+ createNonEnumerableProperty(result, 'source', rawPattern === '' ? '(?:)' : rawPattern);
99267
+ } catch (error) { /* empty */ }
99268
+
99269
+ return result;
99270
+ };
99271
+
99272
+ for (var keys = getOwnPropertyNames$1(NativeRegExp), index = 0; keys.length > index;) {
99273
+ proxyAccessor(RegExpWrapper, NativeRegExp, keys[index++]);
99274
+ }
99275
+
99276
+ RegExpPrototype$2.constructor = RegExpWrapper;
99277
+ RegExpWrapper.prototype = RegExpPrototype$2;
99278
+ defineBuiltIn$3(globalThis$a, 'RegExp', RegExpWrapper, { constructor: true });
99279
+ }
99280
+
99281
+ // https://tc39.es/ecma262/#sec-get-regexp-@@species
99282
+ setSpecies$2('RegExp');
99283
+
99284
+ var DESCRIPTORS$6 = descriptors;
99285
+ var UNSUPPORTED_DOT_ALL = regexpUnsupportedDotAll;
99286
+ var classof$4 = classofRaw$2;
99287
+ var defineBuiltInAccessor$4 = defineBuiltInAccessor$d;
99288
+ var getInternalState$1 = internalState.get;
99289
+
99290
+ var RegExpPrototype$1 = RegExp.prototype;
99291
+ var $TypeError$6 = TypeError;
99292
+
99293
+ // `RegExp.prototype.dotAll` getter
99294
+ // https://tc39.es/ecma262/#sec-get-regexp.prototype.dotall
99295
+ if (DESCRIPTORS$6 && UNSUPPORTED_DOT_ALL) {
99296
+ defineBuiltInAccessor$4(RegExpPrototype$1, 'dotAll', {
99297
+ configurable: true,
99298
+ get: function dotAll() {
99299
+ if (this === RegExpPrototype$1) return;
99300
+ // We can't use InternalStateModule.getterFor because
99301
+ // we don't add metadata for regexps created by a literal.
99302
+ if (classof$4(this) === 'RegExp') {
99303
+ return !!getInternalState$1(this).dotAll;
99304
+ }
99305
+ throw new $TypeError$6('Incompatible receiver, RegExp required');
99306
+ }
99307
+ });
99308
+ }
99309
+
99310
+ var DESCRIPTORS$5 = descriptors;
99311
+ var MISSED_STICKY = regexpStickyHelpers.MISSED_STICKY;
99312
+ var classof$3 = classofRaw$2;
99313
+ var defineBuiltInAccessor$3 = defineBuiltInAccessor$d;
99314
+ var getInternalState = internalState.get;
99315
+
99316
+ var RegExpPrototype = RegExp.prototype;
99317
+ var $TypeError$5 = TypeError;
99318
+
99319
+ // `RegExp.prototype.sticky` getter
99320
+ // https://tc39.es/ecma262/#sec-get-regexp.prototype.sticky
99321
+ if (DESCRIPTORS$5 && MISSED_STICKY) {
99322
+ defineBuiltInAccessor$3(RegExpPrototype, 'sticky', {
99323
+ configurable: true,
99324
+ get: function sticky() {
99325
+ if (this === RegExpPrototype) return;
99326
+ // We can't use InternalStateModule.getterFor because
99327
+ // we don't add metadata for regexps created by a literal.
99328
+ if (classof$3(this) === 'RegExp') {
99329
+ return !!getInternalState(this).sticky;
99330
+ }
99331
+ throw new $TypeError$5('Incompatible receiver, RegExp required');
99332
+ }
99333
+ });
99334
+ }
99335
+
99336
+ var call$8 = functionCall;
99337
+ var uncurryThis$c = functionUncurryThis;
99089
99338
  var fixRegExpWellKnownSymbolLogic$1 = fixRegexpWellKnownSymbolLogic;
99090
99339
  var anObject$3 = anObject$l;
99091
99340
  var isNullOrUndefined$4 = isNullOrUndefined$b;
@@ -99093,21 +99342,21 @@ var requireObjectCoercible$6 = requireObjectCoercible$f;
99093
99342
  var speciesConstructor$1 = speciesConstructor$3;
99094
99343
  var advanceStringIndex$1 = advanceStringIndex$3;
99095
99344
  var toLength$3 = toLength$a;
99096
- var toString$8 = toString$n;
99345
+ var toString$7 = toString$n;
99097
99346
  var getMethod$2 = getMethod$8;
99098
99347
  var regExpExec$2 = regexpExecAbstract;
99099
- var stickyHelpers$1 = regexpStickyHelpers;
99100
- var fails$b = fails$O;
99348
+ var stickyHelpers = regexpStickyHelpers;
99349
+ var fails$a = fails$O;
99101
99350
 
99102
- var UNSUPPORTED_Y$1 = stickyHelpers$1.UNSUPPORTED_Y;
99351
+ var UNSUPPORTED_Y = stickyHelpers.UNSUPPORTED_Y;
99103
99352
  var MAX_UINT32 = 0xFFFFFFFF;
99104
99353
  var min$1 = Math.min;
99105
- var push$1 = uncurryThis$d([].push);
99106
- var stringSlice$5 = uncurryThis$d(''.slice);
99354
+ var push$1 = uncurryThis$c([].push);
99355
+ var stringSlice$4 = uncurryThis$c(''.slice);
99107
99356
 
99108
99357
  // Chrome 51 has a buggy "split" implementation when RegExp#exec !== nativeExec
99109
99358
  // Weex JS has frozen built-in prototypes, so use try / catch wrapper
99110
- var SPLIT_WORKS_WITH_OVERWRITTEN_EXEC = !fails$b(function () {
99359
+ var SPLIT_WORKS_WITH_OVERWRITTEN_EXEC = !fails$a(function () {
99111
99360
  // eslint-disable-next-line regexp/no-empty-group -- required for testing
99112
99361
  var re = /(?:)/;
99113
99362
  var originalExec = re.exec;
@@ -99139,7 +99388,7 @@ fixRegExpWellKnownSymbolLogic$1('split', function (SPLIT, nativeSplit, maybeCall
99139
99388
  var splitter = isNullOrUndefined$4(separator) ? undefined : getMethod$2(separator, SPLIT);
99140
99389
  return splitter
99141
99390
  ? call$8(splitter, separator, O, limit)
99142
- : call$8(internalSplit, toString$8(O), separator, limit);
99391
+ : call$8(internalSplit, toString$7(O), separator, limit);
99143
99392
  },
99144
99393
  // `RegExp.prototype[@@split]` method
99145
99394
  // https://tc39.es/ecma262/#sec-regexp.prototype-@@split
@@ -99148,7 +99397,7 @@ fixRegExpWellKnownSymbolLogic$1('split', function (SPLIT, nativeSplit, maybeCall
99148
99397
  // the 'y' flag.
99149
99398
  function (string, limit) {
99150
99399
  var rx = anObject$3(this);
99151
- var S = toString$8(string);
99400
+ var S = toString$7(string);
99152
99401
 
99153
99402
  if (!BUGGY) {
99154
99403
  var res = maybeCallNative(internalSplit, rx, S, limit, internalSplit !== nativeSplit);
@@ -99160,10 +99409,10 @@ fixRegExpWellKnownSymbolLogic$1('split', function (SPLIT, nativeSplit, maybeCall
99160
99409
  var flags = (rx.ignoreCase ? 'i' : '') +
99161
99410
  (rx.multiline ? 'm' : '') +
99162
99411
  (rx.unicode ? 'u' : '') +
99163
- (UNSUPPORTED_Y$1 ? 'g' : 'y');
99412
+ (UNSUPPORTED_Y ? 'g' : 'y');
99164
99413
  // ^(? + rx + ) is needed, in combination with some S slicing, to
99165
99414
  // simulate the 'y' flag.
99166
- var splitter = new C(UNSUPPORTED_Y$1 ? '^(?:' + rx.source + ')' : rx, flags);
99415
+ var splitter = new C(UNSUPPORTED_Y ? '^(?:' + rx.source + ')' : rx, flags);
99167
99416
  var lim = limit === undefined ? MAX_UINT32 : limit >>> 0;
99168
99417
  if (lim === 0) return [];
99169
99418
  if (S.length === 0) return regExpExec$2(splitter, S) === null ? [S] : [];
@@ -99171,16 +99420,16 @@ fixRegExpWellKnownSymbolLogic$1('split', function (SPLIT, nativeSplit, maybeCall
99171
99420
  var q = 0;
99172
99421
  var A = [];
99173
99422
  while (q < S.length) {
99174
- splitter.lastIndex = UNSUPPORTED_Y$1 ? 0 : q;
99175
- var z = regExpExec$2(splitter, UNSUPPORTED_Y$1 ? stringSlice$5(S, q) : S);
99423
+ splitter.lastIndex = UNSUPPORTED_Y ? 0 : q;
99424
+ var z = regExpExec$2(splitter, UNSUPPORTED_Y ? stringSlice$4(S, q) : S);
99176
99425
  var e;
99177
99426
  if (
99178
99427
  z === null ||
99179
- (e = min$1(toLength$3(splitter.lastIndex + (UNSUPPORTED_Y$1 ? q : 0)), S.length)) === p
99428
+ (e = min$1(toLength$3(splitter.lastIndex + (UNSUPPORTED_Y ? q : 0)), S.length)) === p
99180
99429
  ) {
99181
99430
  q = advanceStringIndex$1(S, q, unicodeMatching);
99182
99431
  } else {
99183
- push$1(A, stringSlice$5(S, p, q));
99432
+ push$1(A, stringSlice$4(S, p, q));
99184
99433
  if (A.length === lim) return A;
99185
99434
  for (var i = 1; i <= z.length - 1; i++) {
99186
99435
  push$1(A, z[i]);
@@ -99189,41 +99438,41 @@ fixRegExpWellKnownSymbolLogic$1('split', function (SPLIT, nativeSplit, maybeCall
99189
99438
  q = p = e;
99190
99439
  }
99191
99440
  }
99192
- push$1(A, stringSlice$5(S, p));
99441
+ push$1(A, stringSlice$4(S, p));
99193
99442
  return A;
99194
99443
  }
99195
99444
  ];
99196
- }, BUGGY || !SPLIT_WORKS_WITH_OVERWRITTEN_EXEC, UNSUPPORTED_Y$1);
99445
+ }, BUGGY || !SPLIT_WORKS_WITH_OVERWRITTEN_EXEC, UNSUPPORTED_Y);
99197
99446
 
99198
- var globalThis$a = globalThis_1;
99447
+ var globalThis$9 = globalThis_1;
99199
99448
 
99200
- var path$1 = globalThis$a;
99449
+ var path$1 = globalThis$9;
99201
99450
 
99202
- var uncurryThis$c = functionUncurryThis;
99451
+ var uncurryThis$b = functionUncurryThis;
99203
99452
 
99204
99453
  // `thisNumberValue` abstract operation
99205
99454
  // https://tc39.es/ecma262/#sec-thisnumbervalue
99206
- var thisNumberValue$1 = uncurryThis$c(1.0.valueOf);
99455
+ var thisNumberValue$1 = uncurryThis$b(1.0.valueOf);
99207
99456
 
99208
99457
  // a string of all valid unicode whitespaces
99209
99458
  var whitespaces$2 = '\u0009\u000A\u000B\u000C\u000D\u0020\u00A0\u1680\u2000\u2001\u2002' +
99210
99459
  '\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF';
99211
99460
 
99212
- var uncurryThis$b = functionUncurryThis;
99461
+ var uncurryThis$a = functionUncurryThis;
99213
99462
  var requireObjectCoercible$5 = requireObjectCoercible$f;
99214
- var toString$7 = toString$n;
99463
+ var toString$6 = toString$n;
99215
99464
  var whitespaces$1 = whitespaces$2;
99216
99465
 
99217
- var replace$4 = uncurryThis$b(''.replace);
99466
+ var replace$3 = uncurryThis$a(''.replace);
99218
99467
  var ltrim = RegExp('^[' + whitespaces$1 + ']+');
99219
99468
  var rtrim = RegExp('(^|[^' + whitespaces$1 + '])[' + whitespaces$1 + ']+$');
99220
99469
 
99221
99470
  // `String.prototype.{ trim, trimStart, trimEnd, trimLeft, trimRight }` methods implementation
99222
99471
  var createMethod$1 = function (TYPE) {
99223
99472
  return function ($this) {
99224
- var string = toString$7(requireObjectCoercible$5($this));
99225
- if (TYPE & 1) string = replace$4(string, ltrim, '');
99226
- if (TYPE & 2) string = replace$4(string, rtrim, '$1');
99473
+ var string = toString$6(requireObjectCoercible$5($this));
99474
+ if (TYPE & 1) string = replace$3(string, ltrim, '');
99475
+ if (TYPE & 2) string = replace$3(string, rtrim, '$1');
99227
99476
  return string;
99228
99477
  };
99229
99478
  };
@@ -99242,30 +99491,30 @@ var stringTrim = {
99242
99491
 
99243
99492
  var $$p = _export;
99244
99493
  var IS_PURE = isPure;
99245
- var DESCRIPTORS$7 = descriptors;
99246
- var globalThis$9 = globalThis_1;
99494
+ var DESCRIPTORS$4 = descriptors;
99495
+ var globalThis$8 = globalThis_1;
99247
99496
  var path = path$1;
99248
- var uncurryThis$a = functionUncurryThis;
99249
- var isForced$3 = isForced_1;
99250
- var hasOwn$5 = hasOwnProperty_1;
99251
- var inheritIfRequired$2 = inheritIfRequired$7;
99252
- var isPrototypeOf$2 = objectIsPrototypeOf;
99497
+ var uncurryThis$9 = functionUncurryThis;
99498
+ var isForced$2 = isForced_1;
99499
+ var hasOwn$4 = hasOwnProperty_1;
99500
+ var inheritIfRequired$1 = inheritIfRequired$7;
99501
+ var isPrototypeOf$1 = objectIsPrototypeOf;
99253
99502
  var isSymbol$1 = isSymbol$5;
99254
99503
  var toPrimitive = toPrimitive$3;
99255
- var fails$a = fails$O;
99256
- var getOwnPropertyNames$1 = objectGetOwnPropertyNames.f;
99504
+ var fails$9 = fails$O;
99505
+ var getOwnPropertyNames = objectGetOwnPropertyNames.f;
99257
99506
  var getOwnPropertyDescriptor$2 = objectGetOwnPropertyDescriptor.f;
99258
99507
  var defineProperty$2 = objectDefineProperty.f;
99259
99508
  var thisNumberValue = thisNumberValue$1;
99260
99509
  var trim = stringTrim.trim;
99261
99510
 
99262
99511
  var NUMBER = 'Number';
99263
- var NativeNumber = globalThis$9[NUMBER];
99512
+ var NativeNumber = globalThis$8[NUMBER];
99264
99513
  path[NUMBER];
99265
99514
  var NumberPrototype = NativeNumber.prototype;
99266
- var TypeError$2 = globalThis$9.TypeError;
99267
- var stringSlice$4 = uncurryThis$a(''.slice);
99268
- var charCodeAt$1 = uncurryThis$a(''.charCodeAt);
99515
+ var TypeError$2 = globalThis$8.TypeError;
99516
+ var stringSlice$3 = uncurryThis$9(''.slice);
99517
+ var charCodeAt$1 = uncurryThis$9(''.charCodeAt);
99269
99518
 
99270
99519
  // `ToNumeric` abstract operation
99271
99520
  // https://tc39.es/ecma262/#sec-tonumeric
@@ -99303,7 +99552,7 @@ var toNumber = function (argument) {
99303
99552
  default:
99304
99553
  return +it;
99305
99554
  }
99306
- digits = stringSlice$4(it, 2);
99555
+ digits = stringSlice$3(it, 2);
99307
99556
  length = digits.length;
99308
99557
  for (index = 0; index < length; index++) {
99309
99558
  code = charCodeAt$1(digits, index);
@@ -99315,18 +99564,18 @@ var toNumber = function (argument) {
99315
99564
  } return +it;
99316
99565
  };
99317
99566
 
99318
- var FORCED$2 = isForced$3(NUMBER, !NativeNumber(' 0o1') || !NativeNumber('0b1') || NativeNumber('+0x1'));
99567
+ var FORCED$2 = isForced$2(NUMBER, !NativeNumber(' 0o1') || !NativeNumber('0b1') || NativeNumber('+0x1'));
99319
99568
 
99320
99569
  var calledWithNew = function (dummy) {
99321
99570
  // includes check on 1..constructor(foo) case
99322
- return isPrototypeOf$2(NumberPrototype, dummy) && fails$a(function () { thisNumberValue(dummy); });
99571
+ return isPrototypeOf$1(NumberPrototype, dummy) && fails$9(function () { thisNumberValue(dummy); });
99323
99572
  };
99324
99573
 
99325
99574
  // `Number` constructor
99326
99575
  // https://tc39.es/ecma262/#sec-number-constructor
99327
99576
  var NumberWrapper = function Number(value) {
99328
99577
  var n = arguments.length < 1 ? 0 : NativeNumber(toNumeric(value));
99329
- return calledWithNew(this) ? inheritIfRequired$2(Object(n), this, NumberWrapper) : n;
99578
+ return calledWithNew(this) ? inheritIfRequired$1(Object(n), this, NumberWrapper) : n;
99330
99579
  };
99331
99580
 
99332
99581
  NumberWrapper.prototype = NumberPrototype;
@@ -99338,7 +99587,7 @@ $$p({ global: true, constructor: true, wrap: true, forced: FORCED$2 }, {
99338
99587
 
99339
99588
  // Use `internal/copy-constructor-properties` helper in `core-js@4`
99340
99589
  var copyConstructorProperties = function (target, source) {
99341
- for (var keys = DESCRIPTORS$7 ? getOwnPropertyNames$1(source) : (
99590
+ for (var keys = DESCRIPTORS$4 ? getOwnPropertyNames(source) : (
99342
99591
  // ES3:
99343
99592
  'MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,' +
99344
99593
  // ES2015 (in case, if modules with ES2015 Number statics required before):
@@ -99346,7 +99595,7 @@ var copyConstructorProperties = function (target, source) {
99346
99595
  // ESNext
99347
99596
  'fromString,range'
99348
99597
  ).split(','), j = 0, key; keys.length > j; j++) {
99349
- if (hasOwn$5(source, key = keys[j]) && !hasOwn$5(target, key)) {
99598
+ if (hasOwn$4(source, key = keys[j]) && !hasOwn$4(target, key)) {
99350
99599
  defineProperty$2(target, key, getOwnPropertyDescriptor$2(source, key));
99351
99600
  }
99352
99601
  }
@@ -99355,22 +99604,22 @@ if (FORCED$2 || IS_PURE) copyConstructorProperties(path[NUMBER], NativeNumber);
99355
99604
 
99356
99605
  var $$o = _export;
99357
99606
  var call$7 = functionCall;
99358
- var uncurryThis$9 = functionUncurryThis;
99607
+ var uncurryThis$8 = functionUncurryThis;
99359
99608
  var requireObjectCoercible$4 = requireObjectCoercible$f;
99360
99609
  var isCallable$7 = isCallable$t;
99361
99610
  var isNullOrUndefined$3 = isNullOrUndefined$b;
99362
- var isRegExp$1 = isRegexp;
99363
- var toString$6 = toString$n;
99611
+ var isRegExp = isRegexp;
99612
+ var toString$5 = toString$n;
99364
99613
  var getMethod$1 = getMethod$8;
99365
- var getRegExpFlags$1 = regexpGetFlags;
99614
+ var getRegExpFlags = regexpGetFlags;
99366
99615
  var getSubstitution = getSubstitution$2;
99367
- var wellKnownSymbol$3 = wellKnownSymbol$s;
99616
+ var wellKnownSymbol$2 = wellKnownSymbol$s;
99368
99617
 
99369
- var REPLACE = wellKnownSymbol$3('replace');
99370
- var $TypeError$6 = TypeError;
99371
- var indexOf = uncurryThis$9(''.indexOf);
99372
- uncurryThis$9(''.replace);
99373
- var stringSlice$3 = uncurryThis$9(''.slice);
99618
+ var REPLACE = wellKnownSymbol$2('replace');
99619
+ var $TypeError$4 = TypeError;
99620
+ var indexOf = uncurryThis$8(''.indexOf);
99621
+ uncurryThis$8(''.replace);
99622
+ var stringSlice$2 = uncurryThis$8(''.slice);
99374
99623
  var max$1 = Math.max;
99375
99624
 
99376
99625
  // `String.prototype.replaceAll` method
@@ -99382,285 +99631,36 @@ $$o({ target: 'String', proto: true }, {
99382
99631
  var endOfLastMatch = 0;
99383
99632
  var result = '';
99384
99633
  if (!isNullOrUndefined$3(searchValue)) {
99385
- IS_REG_EXP = isRegExp$1(searchValue);
99634
+ IS_REG_EXP = isRegExp(searchValue);
99386
99635
  if (IS_REG_EXP) {
99387
- flags = toString$6(requireObjectCoercible$4(getRegExpFlags$1(searchValue)));
99388
- if (!~indexOf(flags, 'g')) throw new $TypeError$6('`.replaceAll` does not allow non-global regexes');
99636
+ flags = toString$5(requireObjectCoercible$4(getRegExpFlags(searchValue)));
99637
+ if (!~indexOf(flags, 'g')) throw new $TypeError$4('`.replaceAll` does not allow non-global regexes');
99389
99638
  }
99390
99639
  replacer = getMethod$1(searchValue, REPLACE);
99391
99640
  if (replacer) return call$7(replacer, searchValue, O, replaceValue);
99392
99641
  }
99393
- string = toString$6(O);
99394
- searchString = toString$6(searchValue);
99642
+ string = toString$5(O);
99643
+ searchString = toString$5(searchValue);
99395
99644
  functionalReplace = isCallable$7(replaceValue);
99396
- if (!functionalReplace) replaceValue = toString$6(replaceValue);
99645
+ if (!functionalReplace) replaceValue = toString$5(replaceValue);
99397
99646
  searchLength = searchString.length;
99398
99647
  advanceBy = max$1(1, searchLength);
99399
99648
  position = indexOf(string, searchString);
99400
99649
  while (position !== -1) {
99401
99650
  replacement = functionalReplace
99402
- ? toString$6(replaceValue(searchString, position, string))
99651
+ ? toString$5(replaceValue(searchString, position, string))
99403
99652
  : getSubstitution(searchString, string, position, [], undefined, replaceValue);
99404
- result += stringSlice$3(string, endOfLastMatch, position) + replacement;
99653
+ result += stringSlice$2(string, endOfLastMatch, position) + replacement;
99405
99654
  endOfLastMatch = position + searchLength;
99406
99655
  position = position + advanceBy > string.length ? -1 : indexOf(string, searchString, position + advanceBy);
99407
99656
  }
99408
99657
  if (endOfLastMatch < string.length) {
99409
- result += stringSlice$3(string, endOfLastMatch);
99658
+ result += stringSlice$2(string, endOfLastMatch);
99410
99659
  }
99411
99660
  return result;
99412
99661
  }
99413
99662
  });
99414
99663
 
99415
- var DESCRIPTORS$6 = descriptors;
99416
- var globalThis$8 = globalThis_1;
99417
- var uncurryThis$8 = functionUncurryThis;
99418
- var isForced$2 = isForced_1;
99419
- var inheritIfRequired$1 = inheritIfRequired$7;
99420
- var createNonEnumerableProperty = createNonEnumerableProperty$c;
99421
- var create$1 = objectCreate;
99422
- var getOwnPropertyNames = objectGetOwnPropertyNames.f;
99423
- var isPrototypeOf$1 = objectIsPrototypeOf;
99424
- var isRegExp = isRegexp;
99425
- var toString$5 = toString$n;
99426
- var getRegExpFlags = regexpGetFlags;
99427
- var stickyHelpers = regexpStickyHelpers;
99428
- var proxyAccessor = proxyAccessor$2;
99429
- var defineBuiltIn$3 = defineBuiltIn$h;
99430
- var fails$9 = fails$O;
99431
- var hasOwn$4 = hasOwnProperty_1;
99432
- var enforceInternalState = internalState.enforce;
99433
- var setSpecies$2 = setSpecies$4;
99434
- var wellKnownSymbol$2 = wellKnownSymbol$s;
99435
- var UNSUPPORTED_DOT_ALL$1 = regexpUnsupportedDotAll;
99436
- var UNSUPPORTED_NCG = regexpUnsupportedNcg;
99437
-
99438
- var MATCH = wellKnownSymbol$2('match');
99439
- var NativeRegExp = globalThis$8.RegExp;
99440
- var RegExpPrototype$2 = NativeRegExp.prototype;
99441
- var SyntaxError$1 = globalThis$8.SyntaxError;
99442
- var exec$1 = uncurryThis$8(RegExpPrototype$2.exec);
99443
- var charAt$1 = uncurryThis$8(''.charAt);
99444
- var replace$3 = uncurryThis$8(''.replace);
99445
- var stringIndexOf = uncurryThis$8(''.indexOf);
99446
- var stringSlice$2 = uncurryThis$8(''.slice);
99447
- // TODO: Use only proper RegExpIdentifierName
99448
- var IS_NCG = /^\?<[^\s\d!#%&*+<=>@^][^\s!#%&*+<=>@^]*>/;
99449
- var re1 = /a/g;
99450
- var re2 = /a/g;
99451
-
99452
- // "new" should create a new object, old webkit bug
99453
- var CORRECT_NEW = new NativeRegExp(re1) !== re1;
99454
-
99455
- var MISSED_STICKY$1 = stickyHelpers.MISSED_STICKY;
99456
- var UNSUPPORTED_Y = stickyHelpers.UNSUPPORTED_Y;
99457
-
99458
- var BASE_FORCED = DESCRIPTORS$6 &&
99459
- (!CORRECT_NEW || MISSED_STICKY$1 || UNSUPPORTED_DOT_ALL$1 || UNSUPPORTED_NCG || fails$9(function () {
99460
- re2[MATCH] = false;
99461
- // RegExp constructor can alter flags and IsRegExp works correct with @@match
99462
- // eslint-disable-next-line sonar/inconsistent-function-call -- required for testing
99463
- return NativeRegExp(re1) !== re1 || NativeRegExp(re2) === re2 || String(NativeRegExp(re1, 'i')) !== '/a/i';
99464
- }));
99465
-
99466
- var handleDotAll = function (string) {
99467
- var length = string.length;
99468
- var index = 0;
99469
- var result = '';
99470
- var brackets = false;
99471
- var chr;
99472
- for (; index <= length; index++) {
99473
- chr = charAt$1(string, index);
99474
- if (chr === '\\') {
99475
- result += chr + charAt$1(string, ++index);
99476
- continue;
99477
- }
99478
- if (!brackets && chr === '.') {
99479
- result += '[\\s\\S]';
99480
- } else {
99481
- if (chr === '[') {
99482
- brackets = true;
99483
- } else if (chr === ']') {
99484
- brackets = false;
99485
- } result += chr;
99486
- }
99487
- } return result;
99488
- };
99489
-
99490
- var handleNCG = function (string) {
99491
- var length = string.length;
99492
- var index = 0;
99493
- var result = '';
99494
- var named = [];
99495
- var names = create$1(null);
99496
- var brackets = false;
99497
- var ncg = false;
99498
- var groupid = 0;
99499
- var groupname = '';
99500
- var chr;
99501
- for (; index <= length; index++) {
99502
- chr = charAt$1(string, index);
99503
- if (chr === '\\') {
99504
- chr += charAt$1(string, ++index);
99505
- } else if (chr === ']') {
99506
- brackets = false;
99507
- } else if (!brackets) switch (true) {
99508
- case chr === '[':
99509
- brackets = true;
99510
- break;
99511
- case chr === '(':
99512
- result += chr;
99513
- // ignore non-capturing groups
99514
- if (stringSlice$2(string, index + 1, index + 3) === '?:') {
99515
- continue;
99516
- }
99517
- if (exec$1(IS_NCG, stringSlice$2(string, index + 1))) {
99518
- index += 2;
99519
- ncg = true;
99520
- }
99521
- groupid++;
99522
- continue;
99523
- case chr === '>' && ncg:
99524
- if (groupname === '' || hasOwn$4(names, groupname)) {
99525
- throw new SyntaxError$1('Invalid capture group name');
99526
- }
99527
- names[groupname] = true;
99528
- named[named.length] = [groupname, groupid];
99529
- ncg = false;
99530
- groupname = '';
99531
- continue;
99532
- }
99533
- if (ncg) groupname += chr;
99534
- else result += chr;
99535
- } return [result, named];
99536
- };
99537
-
99538
- // `RegExp` constructor
99539
- // https://tc39.es/ecma262/#sec-regexp-constructor
99540
- if (isForced$2('RegExp', BASE_FORCED)) {
99541
- var RegExpWrapper = function RegExp(pattern, flags) {
99542
- var thisIsRegExp = isPrototypeOf$1(RegExpPrototype$2, this);
99543
- var patternIsRegExp = isRegExp(pattern);
99544
- var flagsAreUndefined = flags === undefined;
99545
- var groups = [];
99546
- var rawPattern = pattern;
99547
- var rawFlags, dotAll, sticky, handled, result, state;
99548
-
99549
- if (!thisIsRegExp && patternIsRegExp && flagsAreUndefined && pattern.constructor === RegExpWrapper) {
99550
- return pattern;
99551
- }
99552
-
99553
- if (patternIsRegExp || isPrototypeOf$1(RegExpPrototype$2, pattern)) {
99554
- pattern = pattern.source;
99555
- if (flagsAreUndefined) flags = getRegExpFlags(rawPattern);
99556
- }
99557
-
99558
- pattern = pattern === undefined ? '' : toString$5(pattern);
99559
- flags = flags === undefined ? '' : toString$5(flags);
99560
- rawPattern = pattern;
99561
-
99562
- if (UNSUPPORTED_DOT_ALL$1 && 'dotAll' in re1) {
99563
- dotAll = !!flags && stringIndexOf(flags, 's') > -1;
99564
- if (dotAll) flags = replace$3(flags, /s/g, '');
99565
- }
99566
-
99567
- rawFlags = flags;
99568
-
99569
- if (MISSED_STICKY$1 && 'sticky' in re1) {
99570
- sticky = !!flags && stringIndexOf(flags, 'y') > -1;
99571
- if (sticky && UNSUPPORTED_Y) flags = replace$3(flags, /y/g, '');
99572
- }
99573
-
99574
- if (UNSUPPORTED_NCG) {
99575
- handled = handleNCG(pattern);
99576
- pattern = handled[0];
99577
- groups = handled[1];
99578
- }
99579
-
99580
- result = inheritIfRequired$1(NativeRegExp(pattern, flags), thisIsRegExp ? this : RegExpPrototype$2, RegExpWrapper);
99581
-
99582
- if (dotAll || sticky || groups.length) {
99583
- state = enforceInternalState(result);
99584
- if (dotAll) {
99585
- state.dotAll = true;
99586
- state.raw = RegExpWrapper(handleDotAll(pattern), rawFlags);
99587
- }
99588
- if (sticky) state.sticky = true;
99589
- if (groups.length) state.groups = groups;
99590
- }
99591
-
99592
- if (pattern !== rawPattern) try {
99593
- // fails in old engines, but we have no alternatives for unsupported regex syntax
99594
- createNonEnumerableProperty(result, 'source', rawPattern === '' ? '(?:)' : rawPattern);
99595
- } catch (error) { /* empty */ }
99596
-
99597
- return result;
99598
- };
99599
-
99600
- for (var keys = getOwnPropertyNames(NativeRegExp), index = 0; keys.length > index;) {
99601
- proxyAccessor(RegExpWrapper, NativeRegExp, keys[index++]);
99602
- }
99603
-
99604
- RegExpPrototype$2.constructor = RegExpWrapper;
99605
- RegExpWrapper.prototype = RegExpPrototype$2;
99606
- defineBuiltIn$3(globalThis$8, 'RegExp', RegExpWrapper, { constructor: true });
99607
- }
99608
-
99609
- // https://tc39.es/ecma262/#sec-get-regexp-@@species
99610
- setSpecies$2('RegExp');
99611
-
99612
- var DESCRIPTORS$5 = descriptors;
99613
- var UNSUPPORTED_DOT_ALL = regexpUnsupportedDotAll;
99614
- var classof$4 = classofRaw$2;
99615
- var defineBuiltInAccessor$4 = defineBuiltInAccessor$d;
99616
- var getInternalState$1 = internalState.get;
99617
-
99618
- var RegExpPrototype$1 = RegExp.prototype;
99619
- var $TypeError$5 = TypeError;
99620
-
99621
- // `RegExp.prototype.dotAll` getter
99622
- // https://tc39.es/ecma262/#sec-get-regexp.prototype.dotall
99623
- if (DESCRIPTORS$5 && UNSUPPORTED_DOT_ALL) {
99624
- defineBuiltInAccessor$4(RegExpPrototype$1, 'dotAll', {
99625
- configurable: true,
99626
- get: function dotAll() {
99627
- if (this === RegExpPrototype$1) return;
99628
- // We can't use InternalStateModule.getterFor because
99629
- // we don't add metadata for regexps created by a literal.
99630
- if (classof$4(this) === 'RegExp') {
99631
- return !!getInternalState$1(this).dotAll;
99632
- }
99633
- throw new $TypeError$5('Incompatible receiver, RegExp required');
99634
- }
99635
- });
99636
- }
99637
-
99638
- var DESCRIPTORS$4 = descriptors;
99639
- var MISSED_STICKY = regexpStickyHelpers.MISSED_STICKY;
99640
- var classof$3 = classofRaw$2;
99641
- var defineBuiltInAccessor$3 = defineBuiltInAccessor$d;
99642
- var getInternalState = internalState.get;
99643
-
99644
- var RegExpPrototype = RegExp.prototype;
99645
- var $TypeError$4 = TypeError;
99646
-
99647
- // `RegExp.prototype.sticky` getter
99648
- // https://tc39.es/ecma262/#sec-get-regexp.prototype.sticky
99649
- if (DESCRIPTORS$4 && MISSED_STICKY) {
99650
- defineBuiltInAccessor$3(RegExpPrototype, 'sticky', {
99651
- configurable: true,
99652
- get: function sticky() {
99653
- if (this === RegExpPrototype) return;
99654
- // We can't use InternalStateModule.getterFor because
99655
- // we don't add metadata for regexps created by a literal.
99656
- if (classof$3(this) === 'RegExp') {
99657
- return !!getInternalState(this).sticky;
99658
- }
99659
- throw new $TypeError$4('Incompatible receiver, RegExp required');
99660
- }
99661
- });
99662
- }
99663
-
99664
99664
  var DESCRIPTORS$3 = descriptors;
99665
99665
  var isArray$2 = isArray$5;
99666
99666
 
@@ -122962,7 +122962,7 @@ function requireD () {
122962
122962
  + 'pragma private protected public pure ref return scope shared static struct '
122963
122963
  + 'super switch synchronized template this throw try typedef typeid typeof union '
122964
122964
  + 'unittest version void volatile while with __FILE__ __LINE__ __gshared|10 '
122965
- + '__thread __traits __DATE__ __EOF__ __TIME__ __TIMESTAMP__ __VENDOR__ "0.10.37"',
122965
+ + '__thread __traits __DATE__ __EOF__ __TIME__ __TIMESTAMP__ __VENDOR__ "0.10.38"',
122966
122966
  built_in:
122967
122967
  'bool cdouble cent cfloat char creal dchar delegate double dstring float function '
122968
122968
  + 'idouble ifloat ireal long real short string ubyte ucent uint ulong ushort wchar '