bhd-components 0.10.38 → 0.10.40

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,257 +99084,8 @@ fixRegExpWellKnownSymbolLogic$2('search', function (SEARCH, nativeSearch, maybeC
99084
99084
  ];
99085
99085
  });
99086
99086
 
99087
- var DESCRIPTORS$7 = descriptors;
99088
- var globalThis$a = globalThis_1;
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
99087
  var call$8 = functionCall;
99337
- var uncurryThis$c = functionUncurryThis;
99088
+ var uncurryThis$d = functionUncurryThis;
99338
99089
  var fixRegExpWellKnownSymbolLogic$1 = fixRegexpWellKnownSymbolLogic;
99339
99090
  var anObject$3 = anObject$l;
99340
99091
  var isNullOrUndefined$4 = isNullOrUndefined$b;
@@ -99342,21 +99093,21 @@ var requireObjectCoercible$6 = requireObjectCoercible$f;
99342
99093
  var speciesConstructor$1 = speciesConstructor$3;
99343
99094
  var advanceStringIndex$1 = advanceStringIndex$3;
99344
99095
  var toLength$3 = toLength$a;
99345
- var toString$7 = toString$n;
99096
+ var toString$8 = toString$n;
99346
99097
  var getMethod$2 = getMethod$8;
99347
99098
  var regExpExec$2 = regexpExecAbstract;
99348
- var stickyHelpers = regexpStickyHelpers;
99349
- var fails$a = fails$O;
99099
+ var stickyHelpers$1 = regexpStickyHelpers;
99100
+ var fails$b = fails$O;
99350
99101
 
99351
- var UNSUPPORTED_Y = stickyHelpers.UNSUPPORTED_Y;
99102
+ var UNSUPPORTED_Y$1 = stickyHelpers$1.UNSUPPORTED_Y;
99352
99103
  var MAX_UINT32 = 0xFFFFFFFF;
99353
99104
  var min$1 = Math.min;
99354
- var push$1 = uncurryThis$c([].push);
99355
- var stringSlice$4 = uncurryThis$c(''.slice);
99105
+ var push$1 = uncurryThis$d([].push);
99106
+ var stringSlice$5 = uncurryThis$d(''.slice);
99356
99107
 
99357
99108
  // Chrome 51 has a buggy "split" implementation when RegExp#exec !== nativeExec
99358
99109
  // Weex JS has frozen built-in prototypes, so use try / catch wrapper
99359
- var SPLIT_WORKS_WITH_OVERWRITTEN_EXEC = !fails$a(function () {
99110
+ var SPLIT_WORKS_WITH_OVERWRITTEN_EXEC = !fails$b(function () {
99360
99111
  // eslint-disable-next-line regexp/no-empty-group -- required for testing
99361
99112
  var re = /(?:)/;
99362
99113
  var originalExec = re.exec;
@@ -99388,7 +99139,7 @@ fixRegExpWellKnownSymbolLogic$1('split', function (SPLIT, nativeSplit, maybeCall
99388
99139
  var splitter = isNullOrUndefined$4(separator) ? undefined : getMethod$2(separator, SPLIT);
99389
99140
  return splitter
99390
99141
  ? call$8(splitter, separator, O, limit)
99391
- : call$8(internalSplit, toString$7(O), separator, limit);
99142
+ : call$8(internalSplit, toString$8(O), separator, limit);
99392
99143
  },
99393
99144
  // `RegExp.prototype[@@split]` method
99394
99145
  // https://tc39.es/ecma262/#sec-regexp.prototype-@@split
@@ -99397,7 +99148,7 @@ fixRegExpWellKnownSymbolLogic$1('split', function (SPLIT, nativeSplit, maybeCall
99397
99148
  // the 'y' flag.
99398
99149
  function (string, limit) {
99399
99150
  var rx = anObject$3(this);
99400
- var S = toString$7(string);
99151
+ var S = toString$8(string);
99401
99152
 
99402
99153
  if (!BUGGY) {
99403
99154
  var res = maybeCallNative(internalSplit, rx, S, limit, internalSplit !== nativeSplit);
@@ -99409,10 +99160,10 @@ fixRegExpWellKnownSymbolLogic$1('split', function (SPLIT, nativeSplit, maybeCall
99409
99160
  var flags = (rx.ignoreCase ? 'i' : '') +
99410
99161
  (rx.multiline ? 'm' : '') +
99411
99162
  (rx.unicode ? 'u' : '') +
99412
- (UNSUPPORTED_Y ? 'g' : 'y');
99163
+ (UNSUPPORTED_Y$1 ? 'g' : 'y');
99413
99164
  // ^(? + rx + ) is needed, in combination with some S slicing, to
99414
99165
  // simulate the 'y' flag.
99415
- var splitter = new C(UNSUPPORTED_Y ? '^(?:' + rx.source + ')' : rx, flags);
99166
+ var splitter = new C(UNSUPPORTED_Y$1 ? '^(?:' + rx.source + ')' : rx, flags);
99416
99167
  var lim = limit === undefined ? MAX_UINT32 : limit >>> 0;
99417
99168
  if (lim === 0) return [];
99418
99169
  if (S.length === 0) return regExpExec$2(splitter, S) === null ? [S] : [];
@@ -99420,16 +99171,16 @@ fixRegExpWellKnownSymbolLogic$1('split', function (SPLIT, nativeSplit, maybeCall
99420
99171
  var q = 0;
99421
99172
  var A = [];
99422
99173
  while (q < S.length) {
99423
- splitter.lastIndex = UNSUPPORTED_Y ? 0 : q;
99424
- var z = regExpExec$2(splitter, UNSUPPORTED_Y ? stringSlice$4(S, q) : S);
99174
+ splitter.lastIndex = UNSUPPORTED_Y$1 ? 0 : q;
99175
+ var z = regExpExec$2(splitter, UNSUPPORTED_Y$1 ? stringSlice$5(S, q) : S);
99425
99176
  var e;
99426
99177
  if (
99427
99178
  z === null ||
99428
- (e = min$1(toLength$3(splitter.lastIndex + (UNSUPPORTED_Y ? q : 0)), S.length)) === p
99179
+ (e = min$1(toLength$3(splitter.lastIndex + (UNSUPPORTED_Y$1 ? q : 0)), S.length)) === p
99429
99180
  ) {
99430
99181
  q = advanceStringIndex$1(S, q, unicodeMatching);
99431
99182
  } else {
99432
- push$1(A, stringSlice$4(S, p, q));
99183
+ push$1(A, stringSlice$5(S, p, q));
99433
99184
  if (A.length === lim) return A;
99434
99185
  for (var i = 1; i <= z.length - 1; i++) {
99435
99186
  push$1(A, z[i]);
@@ -99438,41 +99189,41 @@ fixRegExpWellKnownSymbolLogic$1('split', function (SPLIT, nativeSplit, maybeCall
99438
99189
  q = p = e;
99439
99190
  }
99440
99191
  }
99441
- push$1(A, stringSlice$4(S, p));
99192
+ push$1(A, stringSlice$5(S, p));
99442
99193
  return A;
99443
99194
  }
99444
99195
  ];
99445
- }, BUGGY || !SPLIT_WORKS_WITH_OVERWRITTEN_EXEC, UNSUPPORTED_Y);
99196
+ }, BUGGY || !SPLIT_WORKS_WITH_OVERWRITTEN_EXEC, UNSUPPORTED_Y$1);
99446
99197
 
99447
- var globalThis$9 = globalThis_1;
99198
+ var globalThis$a = globalThis_1;
99448
99199
 
99449
- var path$1 = globalThis$9;
99200
+ var path$1 = globalThis$a;
99450
99201
 
99451
- var uncurryThis$b = functionUncurryThis;
99202
+ var uncurryThis$c = functionUncurryThis;
99452
99203
 
99453
99204
  // `thisNumberValue` abstract operation
99454
99205
  // https://tc39.es/ecma262/#sec-thisnumbervalue
99455
- var thisNumberValue$1 = uncurryThis$b(1.0.valueOf);
99206
+ var thisNumberValue$1 = uncurryThis$c(1.0.valueOf);
99456
99207
 
99457
99208
  // a string of all valid unicode whitespaces
99458
99209
  var whitespaces$2 = '\u0009\u000A\u000B\u000C\u000D\u0020\u00A0\u1680\u2000\u2001\u2002' +
99459
99210
  '\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF';
99460
99211
 
99461
- var uncurryThis$a = functionUncurryThis;
99212
+ var uncurryThis$b = functionUncurryThis;
99462
99213
  var requireObjectCoercible$5 = requireObjectCoercible$f;
99463
- var toString$6 = toString$n;
99214
+ var toString$7 = toString$n;
99464
99215
  var whitespaces$1 = whitespaces$2;
99465
99216
 
99466
- var replace$3 = uncurryThis$a(''.replace);
99217
+ var replace$4 = uncurryThis$b(''.replace);
99467
99218
  var ltrim = RegExp('^[' + whitespaces$1 + ']+');
99468
99219
  var rtrim = RegExp('(^|[^' + whitespaces$1 + '])[' + whitespaces$1 + ']+$');
99469
99220
 
99470
99221
  // `String.prototype.{ trim, trimStart, trimEnd, trimLeft, trimRight }` methods implementation
99471
99222
  var createMethod$1 = function (TYPE) {
99472
99223
  return function ($this) {
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');
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');
99476
99227
  return string;
99477
99228
  };
99478
99229
  };
@@ -99491,30 +99242,30 @@ var stringTrim = {
99491
99242
 
99492
99243
  var $$p = _export;
99493
99244
  var IS_PURE = isPure;
99494
- var DESCRIPTORS$4 = descriptors;
99495
- var globalThis$8 = globalThis_1;
99245
+ var DESCRIPTORS$7 = descriptors;
99246
+ var globalThis$9 = globalThis_1;
99496
99247
  var path = path$1;
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;
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;
99502
99253
  var isSymbol$1 = isSymbol$5;
99503
99254
  var toPrimitive = toPrimitive$3;
99504
- var fails$9 = fails$O;
99505
- var getOwnPropertyNames = objectGetOwnPropertyNames.f;
99255
+ var fails$a = fails$O;
99256
+ var getOwnPropertyNames$1 = objectGetOwnPropertyNames.f;
99506
99257
  var getOwnPropertyDescriptor$2 = objectGetOwnPropertyDescriptor.f;
99507
99258
  var defineProperty$2 = objectDefineProperty.f;
99508
99259
  var thisNumberValue = thisNumberValue$1;
99509
99260
  var trim = stringTrim.trim;
99510
99261
 
99511
99262
  var NUMBER = 'Number';
99512
- var NativeNumber = globalThis$8[NUMBER];
99263
+ var NativeNumber = globalThis$9[NUMBER];
99513
99264
  path[NUMBER];
99514
99265
  var NumberPrototype = NativeNumber.prototype;
99515
- var TypeError$2 = globalThis$8.TypeError;
99516
- var stringSlice$3 = uncurryThis$9(''.slice);
99517
- var charCodeAt$1 = uncurryThis$9(''.charCodeAt);
99266
+ var TypeError$2 = globalThis$9.TypeError;
99267
+ var stringSlice$4 = uncurryThis$a(''.slice);
99268
+ var charCodeAt$1 = uncurryThis$a(''.charCodeAt);
99518
99269
 
99519
99270
  // `ToNumeric` abstract operation
99520
99271
  // https://tc39.es/ecma262/#sec-tonumeric
@@ -99552,7 +99303,7 @@ var toNumber = function (argument) {
99552
99303
  default:
99553
99304
  return +it;
99554
99305
  }
99555
- digits = stringSlice$3(it, 2);
99306
+ digits = stringSlice$4(it, 2);
99556
99307
  length = digits.length;
99557
99308
  for (index = 0; index < length; index++) {
99558
99309
  code = charCodeAt$1(digits, index);
@@ -99564,18 +99315,18 @@ var toNumber = function (argument) {
99564
99315
  } return +it;
99565
99316
  };
99566
99317
 
99567
- var FORCED$2 = isForced$2(NUMBER, !NativeNumber(' 0o1') || !NativeNumber('0b1') || NativeNumber('+0x1'));
99318
+ var FORCED$2 = isForced$3(NUMBER, !NativeNumber(' 0o1') || !NativeNumber('0b1') || NativeNumber('+0x1'));
99568
99319
 
99569
99320
  var calledWithNew = function (dummy) {
99570
99321
  // includes check on 1..constructor(foo) case
99571
- return isPrototypeOf$1(NumberPrototype, dummy) && fails$9(function () { thisNumberValue(dummy); });
99322
+ return isPrototypeOf$2(NumberPrototype, dummy) && fails$a(function () { thisNumberValue(dummy); });
99572
99323
  };
99573
99324
 
99574
99325
  // `Number` constructor
99575
99326
  // https://tc39.es/ecma262/#sec-number-constructor
99576
99327
  var NumberWrapper = function Number(value) {
99577
99328
  var n = arguments.length < 1 ? 0 : NativeNumber(toNumeric(value));
99578
- return calledWithNew(this) ? inheritIfRequired$1(Object(n), this, NumberWrapper) : n;
99329
+ return calledWithNew(this) ? inheritIfRequired$2(Object(n), this, NumberWrapper) : n;
99579
99330
  };
99580
99331
 
99581
99332
  NumberWrapper.prototype = NumberPrototype;
@@ -99587,7 +99338,7 @@ $$p({ global: true, constructor: true, wrap: true, forced: FORCED$2 }, {
99587
99338
 
99588
99339
  // Use `internal/copy-constructor-properties` helper in `core-js@4`
99589
99340
  var copyConstructorProperties = function (target, source) {
99590
- for (var keys = DESCRIPTORS$4 ? getOwnPropertyNames(source) : (
99341
+ for (var keys = DESCRIPTORS$7 ? getOwnPropertyNames$1(source) : (
99591
99342
  // ES3:
99592
99343
  'MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,' +
99593
99344
  // ES2015 (in case, if modules with ES2015 Number statics required before):
@@ -99595,7 +99346,7 @@ var copyConstructorProperties = function (target, source) {
99595
99346
  // ESNext
99596
99347
  'fromString,range'
99597
99348
  ).split(','), j = 0, key; keys.length > j; j++) {
99598
- if (hasOwn$4(source, key = keys[j]) && !hasOwn$4(target, key)) {
99349
+ if (hasOwn$5(source, key = keys[j]) && !hasOwn$5(target, key)) {
99599
99350
  defineProperty$2(target, key, getOwnPropertyDescriptor$2(source, key));
99600
99351
  }
99601
99352
  }
@@ -99604,22 +99355,22 @@ if (FORCED$2 || IS_PURE) copyConstructorProperties(path[NUMBER], NativeNumber);
99604
99355
 
99605
99356
  var $$o = _export;
99606
99357
  var call$7 = functionCall;
99607
- var uncurryThis$8 = functionUncurryThis;
99358
+ var uncurryThis$9 = functionUncurryThis;
99608
99359
  var requireObjectCoercible$4 = requireObjectCoercible$f;
99609
99360
  var isCallable$7 = isCallable$t;
99610
99361
  var isNullOrUndefined$3 = isNullOrUndefined$b;
99611
- var isRegExp = isRegexp;
99612
- var toString$5 = toString$n;
99362
+ var isRegExp$1 = isRegexp;
99363
+ var toString$6 = toString$n;
99613
99364
  var getMethod$1 = getMethod$8;
99614
- var getRegExpFlags = regexpGetFlags;
99365
+ var getRegExpFlags$1 = regexpGetFlags;
99615
99366
  var getSubstitution = getSubstitution$2;
99616
- var wellKnownSymbol$2 = wellKnownSymbol$s;
99367
+ var wellKnownSymbol$3 = wellKnownSymbol$s;
99617
99368
 
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);
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);
99623
99374
  var max$1 = Math.max;
99624
99375
 
99625
99376
  // `String.prototype.replaceAll` method
@@ -99631,36 +99382,285 @@ $$o({ target: 'String', proto: true }, {
99631
99382
  var endOfLastMatch = 0;
99632
99383
  var result = '';
99633
99384
  if (!isNullOrUndefined$3(searchValue)) {
99634
- IS_REG_EXP = isRegExp(searchValue);
99385
+ IS_REG_EXP = isRegExp$1(searchValue);
99635
99386
  if (IS_REG_EXP) {
99636
- flags = toString$5(requireObjectCoercible$4(getRegExpFlags(searchValue)));
99637
- if (!~indexOf(flags, 'g')) throw new $TypeError$4('`.replaceAll` does not allow non-global regexes');
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');
99638
99389
  }
99639
99390
  replacer = getMethod$1(searchValue, REPLACE);
99640
99391
  if (replacer) return call$7(replacer, searchValue, O, replaceValue);
99641
99392
  }
99642
- string = toString$5(O);
99643
- searchString = toString$5(searchValue);
99393
+ string = toString$6(O);
99394
+ searchString = toString$6(searchValue);
99644
99395
  functionalReplace = isCallable$7(replaceValue);
99645
- if (!functionalReplace) replaceValue = toString$5(replaceValue);
99396
+ if (!functionalReplace) replaceValue = toString$6(replaceValue);
99646
99397
  searchLength = searchString.length;
99647
99398
  advanceBy = max$1(1, searchLength);
99648
99399
  position = indexOf(string, searchString);
99649
99400
  while (position !== -1) {
99650
99401
  replacement = functionalReplace
99651
- ? toString$5(replaceValue(searchString, position, string))
99402
+ ? toString$6(replaceValue(searchString, position, string))
99652
99403
  : getSubstitution(searchString, string, position, [], undefined, replaceValue);
99653
- result += stringSlice$2(string, endOfLastMatch, position) + replacement;
99404
+ result += stringSlice$3(string, endOfLastMatch, position) + replacement;
99654
99405
  endOfLastMatch = position + searchLength;
99655
99406
  position = position + advanceBy > string.length ? -1 : indexOf(string, searchString, position + advanceBy);
99656
99407
  }
99657
99408
  if (endOfLastMatch < string.length) {
99658
- result += stringSlice$2(string, endOfLastMatch);
99409
+ result += stringSlice$3(string, endOfLastMatch);
99659
99410
  }
99660
99411
  return result;
99661
99412
  }
99662
99413
  });
99663
99414
 
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.38"',
122965
+ + '__thread __traits __DATE__ __EOF__ __TIME__ __TIMESTAMP__ __VENDOR__ "0.10.40"',
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 '