aws-sdk 2.1692.0 → 2.1693.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1692.0',
86
+ VERSION: '2.1693.0',
87
87
 
88
88
  /**
89
89
  * @api private
@@ -143,12 +143,12 @@ return /******/ (function(modules) { // webpackBootstrap
143
143
  __webpack_require__(46);
144
144
  __webpack_require__(49);
145
145
  __webpack_require__(50);
146
- __webpack_require__(86);
147
- __webpack_require__(89);
148
- __webpack_require__(90);
149
- __webpack_require__(91);
150
- __webpack_require__(100);
151
- __webpack_require__(101);
146
+ __webpack_require__(108);
147
+ __webpack_require__(111);
148
+ __webpack_require__(112);
149
+ __webpack_require__(113);
150
+ __webpack_require__(122);
151
+ __webpack_require__(123);
152
152
 
153
153
  /**
154
154
  * @readonly
@@ -8863,7 +8863,7 @@ return /******/ (function(modules) { // webpackBootstrap
8863
8863
  }
8864
8864
  exports.isPrimitive = isPrimitive;
8865
8865
 
8866
- exports.isBuffer = __webpack_require__(84);
8866
+ exports.isBuffer = __webpack_require__(106);
8867
8867
 
8868
8868
  function objectToString(o) {
8869
8869
  return Object.prototype.toString.call(o);
@@ -8907,7 +8907,7 @@ return /******/ (function(modules) { // webpackBootstrap
8907
8907
  * prototype.
8908
8908
  * @param {function} superCtor Constructor function to inherit prototype from.
8909
8909
  */
8910
- exports.inherits = __webpack_require__(85);
8910
+ exports.inherits = __webpack_require__(107);
8911
8911
 
8912
8912
  exports._extend = function(origin, add) {
8913
8913
  // Don't do anything if add isn't an object
@@ -9044,9 +9044,9 @@ return /******/ (function(modules) { // webpackBootstrap
9044
9044
  'use strict';
9045
9045
 
9046
9046
  var isArgumentsObject = __webpack_require__(54);
9047
- var isGeneratorFunction = __webpack_require__(77);
9048
- var whichTypedArray = __webpack_require__(78);
9049
- var isTypedArray = __webpack_require__(83);
9047
+ var isGeneratorFunction = __webpack_require__(91);
9048
+ var whichTypedArray = __webpack_require__(95);
9049
+ var isTypedArray = __webpack_require__(105);
9050
9050
 
9051
9051
  function uncurryThis(f) {
9052
9052
  return f.call.bind(f);
@@ -9385,31 +9385,42 @@ return /******/ (function(modules) { // webpackBootstrap
9385
9385
 
9386
9386
  var $toString = callBound('Object.prototype.toString');
9387
9387
 
9388
+ /** @type {import('.')} */
9388
9389
  var isStandardArguments = function isArguments(value) {
9389
- if (hasToStringTag && value && typeof value === 'object' && Symbol.toStringTag in value) {
9390
+ if (
9391
+ hasToStringTag
9392
+ && value
9393
+ && typeof value === 'object'
9394
+ && Symbol.toStringTag in value
9395
+ ) {
9390
9396
  return false;
9391
9397
  }
9392
9398
  return $toString(value) === '[object Arguments]';
9393
9399
  };
9394
9400
 
9401
+ /** @type {import('.')} */
9395
9402
  var isLegacyArguments = function isArguments(value) {
9396
9403
  if (isStandardArguments(value)) {
9397
9404
  return true;
9398
9405
  }
9399
- return value !== null &&
9400
- typeof value === 'object' &&
9401
- typeof value.length === 'number' &&
9402
- value.length >= 0 &&
9403
- $toString(value) !== '[object Array]' &&
9404
- $toString(value.callee) === '[object Function]';
9406
+ return value !== null
9407
+ && typeof value === 'object'
9408
+ && 'length' in value
9409
+ && typeof value.length === 'number'
9410
+ && value.length >= 0
9411
+ && $toString(value) !== '[object Array]'
9412
+ && 'callee' in value
9413
+ && $toString(value.callee) === '[object Function]';
9405
9414
  };
9406
9415
 
9407
9416
  var supportsStandardArguments = (function () {
9408
9417
  return isStandardArguments(arguments);
9409
9418
  }());
9410
9419
 
9420
+ // @ts-expect-error TODO make this not error
9411
9421
  isStandardArguments.isLegacyArguments = isLegacyArguments; // for tests
9412
9422
 
9423
+ /** @type {import('.')} */
9413
9424
  module.exports = supportsStandardArguments ? isStandardArguments : isLegacyArguments;
9414
9425
 
9415
9426
 
@@ -9433,11 +9444,13 @@ return /******/ (function(modules) { // webpackBootstrap
9433
9444
 
9434
9445
  'use strict';
9435
9446
 
9447
+ /** @type {import('./shams')} */
9436
9448
  /* eslint complexity: [2, 18], max-statements: [2, 33] */
9437
9449
  module.exports = function hasSymbols() {
9438
9450
  if (typeof Symbol !== 'function' || typeof Object.getOwnPropertySymbols !== 'function') { return false; }
9439
9451
  if (typeof Symbol.iterator === 'symbol') { return true; }
9440
9452
 
9453
+ /** @type {{ [k in symbol]?: unknown }} */
9441
9454
  var obj = {};
9442
9455
  var sym = Symbol('test');
9443
9456
  var symObj = Object(sym);
@@ -9456,7 +9469,7 @@ return /******/ (function(modules) { // webpackBootstrap
9456
9469
 
9457
9470
  var symVal = 42;
9458
9471
  obj[sym] = symVal;
9459
- for (sym in obj) { return false; } // eslint-disable-line no-restricted-syntax, no-unreachable-loop
9472
+ for (var _ in obj) { return false; } // eslint-disable-line no-restricted-syntax, no-unreachable-loop
9460
9473
  if (typeof Object.keys === 'function' && Object.keys(obj).length !== 0) { return false; }
9461
9474
 
9462
9475
  if (typeof Object.getOwnPropertyNames === 'function' && Object.getOwnPropertyNames(obj).length !== 0) { return false; }
@@ -9467,7 +9480,8 @@ return /******/ (function(modules) { // webpackBootstrap
9467
9480
  if (!Object.prototype.propertyIsEnumerable.call(obj, sym)) { return false; }
9468
9481
 
9469
9482
  if (typeof Object.getOwnPropertyDescriptor === 'function') {
9470
- var descriptor = Object.getOwnPropertyDescriptor(obj, sym);
9483
+ // eslint-disable-next-line no-extra-parens
9484
+ var descriptor = /** @type {PropertyDescriptor} */ (Object.getOwnPropertyDescriptor(obj, sym));
9471
9485
  if (descriptor.value !== symVal || descriptor.enumerable !== true) { return false; }
9472
9486
  }
9473
9487
 
@@ -9483,14 +9497,18 @@ return /******/ (function(modules) { // webpackBootstrap
9483
9497
 
9484
9498
  var GetIntrinsic = __webpack_require__(58);
9485
9499
 
9486
- var callBind = __webpack_require__(71);
9500
+ var callBindBasic = __webpack_require__(83);
9487
9501
 
9488
- var $indexOf = callBind(GetIntrinsic('String.prototype.indexOf'));
9502
+ /** @type {(thisArg: string, searchString: string, position?: number) => number} */
9503
+ var $indexOf = callBindBasic([GetIntrinsic('%String.prototype.indexOf%')]);
9489
9504
 
9505
+ /** @type {import('.')} */
9490
9506
  module.exports = function callBoundIntrinsic(name, allowMissing) {
9491
- var intrinsic = GetIntrinsic(name, !!allowMissing);
9507
+ /* eslint no-extra-parens: 0 */
9508
+
9509
+ var intrinsic = /** @type {(this: unknown, ...args: unknown[]) => unknown} */ (GetIntrinsic(name, !!allowMissing));
9492
9510
  if (typeof intrinsic === 'function' && $indexOf(name, '.prototype.') > -1) {
9493
- return callBind(intrinsic);
9511
+ return callBindBasic(/** @type {const} */ ([intrinsic]));
9494
9512
  }
9495
9513
  return intrinsic;
9496
9514
  };
@@ -9504,13 +9522,23 @@ return /******/ (function(modules) { // webpackBootstrap
9504
9522
 
9505
9523
  var undefined;
9506
9524
 
9507
- var $Error = __webpack_require__(59);
9508
- var $EvalError = __webpack_require__(60);
9509
- var $RangeError = __webpack_require__(61);
9510
- var $ReferenceError = __webpack_require__(62);
9511
- var $SyntaxError = __webpack_require__(63);
9512
- var $TypeError = __webpack_require__(64);
9513
- var $URIError = __webpack_require__(65);
9525
+ var $Object = __webpack_require__(59);
9526
+
9527
+ var $Error = __webpack_require__(60);
9528
+ var $EvalError = __webpack_require__(61);
9529
+ var $RangeError = __webpack_require__(62);
9530
+ var $ReferenceError = __webpack_require__(63);
9531
+ var $SyntaxError = __webpack_require__(64);
9532
+ var $TypeError = __webpack_require__(65);
9533
+ var $URIError = __webpack_require__(66);
9534
+
9535
+ var abs = __webpack_require__(67);
9536
+ var floor = __webpack_require__(68);
9537
+ var max = __webpack_require__(69);
9538
+ var min = __webpack_require__(70);
9539
+ var pow = __webpack_require__(71);
9540
+ var round = __webpack_require__(72);
9541
+ var sign = __webpack_require__(73);
9514
9542
 
9515
9543
  var $Function = Function;
9516
9544
 
@@ -9521,14 +9549,8 @@ return /******/ (function(modules) { // webpackBootstrap
9521
9549
  } catch (e) {}
9522
9550
  };
9523
9551
 
9524
- var $gOPD = Object.getOwnPropertyDescriptor;
9525
- if ($gOPD) {
9526
- try {
9527
- $gOPD({}, '');
9528
- } catch (e) {
9529
- $gOPD = null; // this is IE 8, which has a broken gOPD
9530
- }
9531
- }
9552
+ var $gOPD = __webpack_require__(75);
9553
+ var $defineProperty = __webpack_require__(77);
9532
9554
 
9533
9555
  var throwTypeError = function () {
9534
9556
  throw new $TypeError();
@@ -9550,14 +9572,14 @@ return /******/ (function(modules) { // webpackBootstrap
9550
9572
  }())
9551
9573
  : throwTypeError;
9552
9574
 
9553
- var hasSymbols = __webpack_require__(66)();
9554
- var hasProto = __webpack_require__(67)();
9575
+ var hasSymbols = __webpack_require__(78)();
9555
9576
 
9556
- var getProto = Object.getPrototypeOf || (
9557
- hasProto
9558
- ? function (x) { return x.__proto__; } // eslint-disable-line no-proto
9559
- : null
9560
- );
9577
+ var getProto = __webpack_require__(79);
9578
+ var $ObjectGPO = __webpack_require__(81);
9579
+ var $ReflectGPO = __webpack_require__(80);
9580
+
9581
+ var $apply = __webpack_require__(88);
9582
+ var $call = __webpack_require__(86);
9561
9583
 
9562
9584
  var needsEval = {};
9563
9585
 
@@ -9588,6 +9610,7 @@ return /******/ (function(modules) { // webpackBootstrap
9588
9610
  '%Error%': $Error,
9589
9611
  '%eval%': eval, // eslint-disable-line no-eval
9590
9612
  '%EvalError%': $EvalError,
9613
+ '%Float16Array%': typeof Float16Array === 'undefined' ? undefined : Float16Array,
9591
9614
  '%Float32Array%': typeof Float32Array === 'undefined' ? undefined : Float32Array,
9592
9615
  '%Float64Array%': typeof Float64Array === 'undefined' ? undefined : Float64Array,
9593
9616
  '%FinalizationRegistry%': typeof FinalizationRegistry === 'undefined' ? undefined : FinalizationRegistry,
@@ -9604,7 +9627,8 @@ return /******/ (function(modules) { // webpackBootstrap
9604
9627
  '%MapIteratorPrototype%': typeof Map === 'undefined' || !hasSymbols || !getProto ? undefined : getProto(new Map()[Symbol.iterator]()),
9605
9628
  '%Math%': Math,
9606
9629
  '%Number%': Number,
9607
- '%Object%': Object,
9630
+ '%Object%': $Object,
9631
+ '%Object.getOwnPropertyDescriptor%': $gOPD,
9608
9632
  '%parseFloat%': parseFloat,
9609
9633
  '%parseInt%': parseInt,
9610
9634
  '%Promise%': typeof Promise === 'undefined' ? undefined : Promise,
@@ -9630,7 +9654,20 @@ return /******/ (function(modules) { // webpackBootstrap
9630
9654
  '%URIError%': $URIError,
9631
9655
  '%WeakMap%': typeof WeakMap === 'undefined' ? undefined : WeakMap,
9632
9656
  '%WeakRef%': typeof WeakRef === 'undefined' ? undefined : WeakRef,
9633
- '%WeakSet%': typeof WeakSet === 'undefined' ? undefined : WeakSet
9657
+ '%WeakSet%': typeof WeakSet === 'undefined' ? undefined : WeakSet,
9658
+
9659
+ '%Function.prototype.call%': $call,
9660
+ '%Function.prototype.apply%': $apply,
9661
+ '%Object.defineProperty%': $defineProperty,
9662
+ '%Object.getPrototypeOf%': $ObjectGPO,
9663
+ '%Math.abs%': abs,
9664
+ '%Math.floor%': floor,
9665
+ '%Math.max%': max,
9666
+ '%Math.min%': min,
9667
+ '%Math.pow%': pow,
9668
+ '%Math.round%': round,
9669
+ '%Math.sign%': sign,
9670
+ '%Reflect.getPrototypeOf%': $ReflectGPO
9634
9671
  };
9635
9672
 
9636
9673
  if (getProto) {
@@ -9723,13 +9760,13 @@ return /******/ (function(modules) { // webpackBootstrap
9723
9760
  '%WeakSetPrototype%': ['WeakSet', 'prototype']
9724
9761
  };
9725
9762
 
9726
- var bind = __webpack_require__(68);
9727
- var hasOwn = __webpack_require__(70);
9728
- var $concat = bind.call(Function.call, Array.prototype.concat);
9729
- var $spliceApply = bind.call(Function.apply, Array.prototype.splice);
9730
- var $replace = bind.call(Function.call, String.prototype.replace);
9731
- var $strSlice = bind.call(Function.call, String.prototype.slice);
9732
- var $exec = bind.call(Function.call, RegExp.prototype.exec);
9763
+ var bind = __webpack_require__(84);
9764
+ var hasOwn = __webpack_require__(90);
9765
+ var $concat = bind.call($call, Array.prototype.concat);
9766
+ var $spliceApply = bind.call($apply, Array.prototype.splice);
9767
+ var $replace = bind.call($call, String.prototype.replace);
9768
+ var $strSlice = bind.call($call, String.prototype.slice);
9769
+ var $exec = bind.call($call, RegExp.prototype.exec);
9733
9770
 
9734
9771
  /* adapted from https://github.com/lodash/lodash/blob/4.17.15/dist/lodash.js#L6735-L6744 */
9735
9772
  var rePropName = /[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g;
@@ -9868,7 +9905,7 @@ return /******/ (function(modules) { // webpackBootstrap
9868
9905
  'use strict';
9869
9906
 
9870
9907
  /** @type {import('.')} */
9871
- module.exports = Error;
9908
+ module.exports = Object;
9872
9909
 
9873
9910
 
9874
9911
  /***/ }),
@@ -9877,12 +9914,22 @@ return /******/ (function(modules) { // webpackBootstrap
9877
9914
 
9878
9915
  'use strict';
9879
9916
 
9917
+ /** @type {import('.')} */
9918
+ module.exports = Error;
9919
+
9920
+
9921
+ /***/ }),
9922
+ /* 61 */
9923
+ /***/ (function(module, exports) {
9924
+
9925
+ 'use strict';
9926
+
9880
9927
  /** @type {import('./eval')} */
9881
9928
  module.exports = EvalError;
9882
9929
 
9883
9930
 
9884
9931
  /***/ }),
9885
- /* 61 */
9932
+ /* 62 */
9886
9933
  /***/ (function(module, exports) {
9887
9934
 
9888
9935
  'use strict';
@@ -9892,7 +9939,7 @@ return /******/ (function(modules) { // webpackBootstrap
9892
9939
 
9893
9940
 
9894
9941
  /***/ }),
9895
- /* 62 */
9942
+ /* 63 */
9896
9943
  /***/ (function(module, exports) {
9897
9944
 
9898
9945
  'use strict';
@@ -9902,7 +9949,7 @@ return /******/ (function(modules) { // webpackBootstrap
9902
9949
 
9903
9950
 
9904
9951
  /***/ }),
9905
- /* 63 */
9952
+ /* 64 */
9906
9953
  /***/ (function(module, exports) {
9907
9954
 
9908
9955
  'use strict';
@@ -9912,7 +9959,7 @@ return /******/ (function(modules) { // webpackBootstrap
9912
9959
 
9913
9960
 
9914
9961
  /***/ }),
9915
- /* 64 */
9962
+ /* 65 */
9916
9963
  /***/ (function(module, exports) {
9917
9964
 
9918
9965
  'use strict';
@@ -9922,7 +9969,7 @@ return /******/ (function(modules) { // webpackBootstrap
9922
9969
 
9923
9970
 
9924
9971
  /***/ }),
9925
- /* 65 */
9972
+ /* 66 */
9926
9973
  /***/ (function(module, exports) {
9927
9974
 
9928
9975
  'use strict';
@@ -9932,7 +9979,147 @@ return /******/ (function(modules) { // webpackBootstrap
9932
9979
 
9933
9980
 
9934
9981
  /***/ }),
9935
- /* 66 */
9982
+ /* 67 */
9983
+ /***/ (function(module, exports) {
9984
+
9985
+ 'use strict';
9986
+
9987
+ /** @type {import('./abs')} */
9988
+ module.exports = Math.abs;
9989
+
9990
+
9991
+ /***/ }),
9992
+ /* 68 */
9993
+ /***/ (function(module, exports) {
9994
+
9995
+ 'use strict';
9996
+
9997
+ /** @type {import('./floor')} */
9998
+ module.exports = Math.floor;
9999
+
10000
+
10001
+ /***/ }),
10002
+ /* 69 */
10003
+ /***/ (function(module, exports) {
10004
+
10005
+ 'use strict';
10006
+
10007
+ /** @type {import('./max')} */
10008
+ module.exports = Math.max;
10009
+
10010
+
10011
+ /***/ }),
10012
+ /* 70 */
10013
+ /***/ (function(module, exports) {
10014
+
10015
+ 'use strict';
10016
+
10017
+ /** @type {import('./min')} */
10018
+ module.exports = Math.min;
10019
+
10020
+
10021
+ /***/ }),
10022
+ /* 71 */
10023
+ /***/ (function(module, exports) {
10024
+
10025
+ 'use strict';
10026
+
10027
+ /** @type {import('./pow')} */
10028
+ module.exports = Math.pow;
10029
+
10030
+
10031
+ /***/ }),
10032
+ /* 72 */
10033
+ /***/ (function(module, exports) {
10034
+
10035
+ 'use strict';
10036
+
10037
+ /** @type {import('./round')} */
10038
+ module.exports = Math.round;
10039
+
10040
+
10041
+ /***/ }),
10042
+ /* 73 */
10043
+ /***/ (function(module, exports, __webpack_require__) {
10044
+
10045
+ 'use strict';
10046
+
10047
+ var $isNaN = __webpack_require__(74);
10048
+
10049
+ /** @type {import('./sign')} */
10050
+ module.exports = function sign(number) {
10051
+ if ($isNaN(number) || number === 0) {
10052
+ return number;
10053
+ }
10054
+ return number < 0 ? -1 : +1;
10055
+ };
10056
+
10057
+
10058
+ /***/ }),
10059
+ /* 74 */
10060
+ /***/ (function(module, exports) {
10061
+
10062
+ 'use strict';
10063
+
10064
+ /** @type {import('./isNaN')} */
10065
+ module.exports = Number.isNaN || function isNaN(a) {
10066
+ return a !== a;
10067
+ };
10068
+
10069
+
10070
+ /***/ }),
10071
+ /* 75 */
10072
+ /***/ (function(module, exports, __webpack_require__) {
10073
+
10074
+ 'use strict';
10075
+
10076
+ /** @type {import('.')} */
10077
+ var $gOPD = __webpack_require__(76);
10078
+
10079
+ if ($gOPD) {
10080
+ try {
10081
+ $gOPD([], 'length');
10082
+ } catch (e) {
10083
+ // IE 8 has a broken gOPD
10084
+ $gOPD = null;
10085
+ }
10086
+ }
10087
+
10088
+ module.exports = $gOPD;
10089
+
10090
+
10091
+ /***/ }),
10092
+ /* 76 */
10093
+ /***/ (function(module, exports) {
10094
+
10095
+ 'use strict';
10096
+
10097
+ /** @type {import('./gOPD')} */
10098
+ module.exports = Object.getOwnPropertyDescriptor;
10099
+
10100
+
10101
+ /***/ }),
10102
+ /* 77 */
10103
+ /***/ (function(module, exports) {
10104
+
10105
+ 'use strict';
10106
+
10107
+ /** @type {import('.')} */
10108
+ var $defineProperty = Object.defineProperty || false;
10109
+ if ($defineProperty) {
10110
+ try {
10111
+ $defineProperty({}, 'a', { value: 1 });
10112
+ } catch (e) {
10113
+ // IE 8 has a broken defineProperty
10114
+ $defineProperty = false;
10115
+ }
10116
+ }
10117
+
10118
+ module.exports = $defineProperty;
10119
+
10120
+
10121
+ /***/ }),
10122
+ /* 78 */
9936
10123
  /***/ (function(module, exports, __webpack_require__) {
9937
10124
 
9938
10125
  'use strict';
@@ -9940,6 +10127,7 @@ return /******/ (function(modules) { // webpackBootstrap
9940
10127
  var origSymbol = typeof Symbol !== 'undefined' && Symbol;
9941
10128
  var hasSymbolSham = __webpack_require__(56);
9942
10129
 
10130
+ /** @type {import('.')} */
9943
10131
  module.exports = function hasNativeSymbols() {
9944
10132
  if (typeof origSymbol !== 'function') { return false; }
9945
10133
  if (typeof Symbol !== 'function') { return false; }
@@ -9951,39 +10139,130 @@ return /******/ (function(modules) { // webpackBootstrap
9951
10139
 
9952
10140
 
9953
10141
  /***/ }),
9954
- /* 67 */
10142
+ /* 79 */
10143
+ /***/ (function(module, exports, __webpack_require__) {
10144
+
10145
+ 'use strict';
10146
+
10147
+ var reflectGetProto = __webpack_require__(80);
10148
+ var originalGetProto = __webpack_require__(81);
10149
+
10150
+ var getDunderProto = __webpack_require__(82);
10151
+
10152
+ /** @type {import('.')} */
10153
+ module.exports = reflectGetProto
10154
+ ? function getProto(O) {
10155
+ // @ts-expect-error TS can't narrow inside a closure, for some reason
10156
+ return reflectGetProto(O);
10157
+ }
10158
+ : originalGetProto
10159
+ ? function getProto(O) {
10160
+ if (!O || (typeof O !== 'object' && typeof O !== 'function')) {
10161
+ throw new TypeError('getProto: not an object');
10162
+ }
10163
+ // @ts-expect-error TS can't narrow inside a closure, for some reason
10164
+ return originalGetProto(O);
10165
+ }
10166
+ : getDunderProto
10167
+ ? function getProto(O) {
10168
+ // @ts-expect-error TS can't narrow inside a closure, for some reason
10169
+ return getDunderProto(O);
10170
+ }
10171
+ : null;
10172
+
10173
+
10174
+ /***/ }),
10175
+ /* 80 */
9955
10176
  /***/ (function(module, exports) {
9956
10177
 
9957
10178
  'use strict';
9958
10179
 
9959
- var test = {
9960
- __proto__: null,
9961
- foo: {}
9962
- };
10180
+ /** @type {import('./Reflect.getPrototypeOf')} */
10181
+ module.exports = (typeof Reflect !== 'undefined' && Reflect.getPrototypeOf) || null;
10182
+
10183
+
10184
+ /***/ }),
10185
+ /* 81 */
10186
+ /***/ (function(module, exports, __webpack_require__) {
10187
+
10188
+ 'use strict';
10189
+
10190
+ var $Object = __webpack_require__(59);
10191
+
10192
+ /** @type {import('./Object.getPrototypeOf')} */
10193
+ module.exports = $Object.getPrototypeOf || null;
10194
+
10195
+
10196
+ /***/ }),
10197
+ /* 82 */
10198
+ /***/ (function(module, exports, __webpack_require__) {
10199
+
10200
+ 'use strict';
10201
+
10202
+ var callBind = __webpack_require__(83);
10203
+ var gOPD = __webpack_require__(75);
10204
+
10205
+ var hasProtoAccessor;
10206
+ try {
10207
+ // eslint-disable-next-line no-extra-parens, no-proto
10208
+ hasProtoAccessor = /** @type {{ __proto__?: typeof Array.prototype }} */ ([]).__proto__ === Array.prototype;
10209
+ } catch (e) {
10210
+ if (!e || typeof e !== 'object' || !('code' in e) || e.code !== 'ERR_PROTO_ACCESS') {
10211
+ throw e;
10212
+ }
10213
+ }
10214
+
10215
+ // eslint-disable-next-line no-extra-parens
10216
+ var desc = !!hasProtoAccessor && gOPD && gOPD(Object.prototype, /** @type {keyof typeof Object.prototype} */ ('__proto__'));
9963
10217
 
9964
10218
  var $Object = Object;
10219
+ var $getPrototypeOf = $Object.getPrototypeOf;
10220
+
10221
+ /** @type {import('./get')} */
10222
+ module.exports = desc && typeof desc.get === 'function'
10223
+ ? callBind([desc.get])
10224
+ : typeof $getPrototypeOf === 'function'
10225
+ ? /** @type {import('./get')} */ function getDunder(value) {
10226
+ // eslint-disable-next-line eqeqeq
10227
+ return $getPrototypeOf(value == null ? value : $Object(value));
10228
+ }
10229
+ : false;
9965
10230
 
9966
- /** @type {import('.')} */
9967
- module.exports = function hasProto() {
9968
- // @ts-expect-error: TS errors on an inherited property for some reason
9969
- return { __proto__: test }.foo === test.foo
9970
- && !(test instanceof $Object);
10231
+
10232
+ /***/ }),
10233
+ /* 83 */
10234
+ /***/ (function(module, exports, __webpack_require__) {
10235
+
10236
+ 'use strict';
10237
+
10238
+ var bind = __webpack_require__(84);
10239
+ var $TypeError = __webpack_require__(65);
10240
+
10241
+ var $call = __webpack_require__(86);
10242
+ var $actualApply = __webpack_require__(87);
10243
+
10244
+ /** @type {(args: [Function, thisArg?: unknown, ...args: unknown[]]) => Function} TODO FIXME, find a way to use import('.') */
10245
+ module.exports = function callBindBasic(args) {
10246
+ if (args.length < 1 || typeof args[0] !== 'function') {
10247
+ throw new $TypeError('a function is required');
10248
+ }
10249
+ return $actualApply(bind, $call, args);
9971
10250
  };
9972
10251
 
9973
10252
 
9974
10253
  /***/ }),
9975
- /* 68 */
10254
+ /* 84 */
9976
10255
  /***/ (function(module, exports, __webpack_require__) {
9977
10256
 
9978
10257
  'use strict';
9979
10258
 
9980
- var implementation = __webpack_require__(69);
10259
+ var implementation = __webpack_require__(85);
9981
10260
 
9982
10261
  module.exports = Function.prototype.bind || implementation;
9983
10262
 
9984
10263
 
9985
10264
  /***/ }),
9986
- /* 69 */
10265
+ /* 85 */
9987
10266
  /***/ (function(module, exports) {
9988
10267
 
9989
10268
  'use strict';
@@ -10073,299 +10352,237 @@ return /******/ (function(modules) { // webpackBootstrap
10073
10352
 
10074
10353
 
10075
10354
  /***/ }),
10076
- /* 70 */
10077
- /***/ (function(module, exports, __webpack_require__) {
10355
+ /* 86 */
10356
+ /***/ (function(module, exports) {
10078
10357
 
10079
10358
  'use strict';
10080
10359
 
10081
- var call = Function.prototype.call;
10082
- var $hasOwn = Object.prototype.hasOwnProperty;
10083
- var bind = __webpack_require__(68);
10084
-
10085
- /** @type {import('.')} */
10086
- module.exports = bind.call(call, $hasOwn);
10360
+ /** @type {import('./functionCall')} */
10361
+ module.exports = Function.prototype.call;
10087
10362
 
10088
10363
 
10089
10364
  /***/ }),
10090
- /* 71 */
10365
+ /* 87 */
10091
10366
  /***/ (function(module, exports, __webpack_require__) {
10092
10367
 
10093
10368
  'use strict';
10094
10369
 
10095
- var bind = __webpack_require__(68);
10096
- var GetIntrinsic = __webpack_require__(58);
10097
- var setFunctionLength = __webpack_require__(72);
10370
+ var bind = __webpack_require__(84);
10098
10371
 
10099
- var $TypeError = __webpack_require__(64);
10100
- var $apply = GetIntrinsic('%Function.prototype.apply%');
10101
- var $call = GetIntrinsic('%Function.prototype.call%');
10102
- var $reflectApply = GetIntrinsic('%Reflect.apply%', true) || bind.call($call, $apply);
10372
+ var $apply = __webpack_require__(88);
10373
+ var $call = __webpack_require__(86);
10374
+ var $reflectApply = __webpack_require__(89);
10103
10375
 
10104
- var $defineProperty = __webpack_require__(74);
10105
- var $max = GetIntrinsic('%Math.max%');
10376
+ /** @type {import('./actualApply')} */
10377
+ module.exports = $reflectApply || bind.call($call, $apply);
10106
10378
 
10107
- module.exports = function callBind(originalFunction) {
10108
- if (typeof originalFunction !== 'function') {
10109
- throw new $TypeError('a function is required');
10110
- }
10111
- var func = $reflectApply(bind, $call, arguments);
10112
- return setFunctionLength(
10113
- func,
10114
- 1 + $max(0, originalFunction.length - (arguments.length - 1)),
10115
- true
10116
- );
10117
- };
10118
10379
 
10119
- var applyBind = function applyBind() {
10120
- return $reflectApply(bind, $apply, arguments);
10121
- };
10380
+ /***/ }),
10381
+ /* 88 */
10382
+ /***/ (function(module, exports) {
10122
10383
 
10123
- if ($defineProperty) {
10124
- $defineProperty(module.exports, 'apply', { value: applyBind });
10125
- } else {
10126
- module.exports.apply = applyBind;
10127
- }
10384
+ 'use strict';
10385
+
10386
+ /** @type {import('./functionApply')} */
10387
+ module.exports = Function.prototype.apply;
10128
10388
 
10129
10389
 
10130
10390
  /***/ }),
10131
- /* 72 */
10132
- /***/ (function(module, exports, __webpack_require__) {
10391
+ /* 89 */
10392
+ /***/ (function(module, exports) {
10133
10393
 
10134
10394
  'use strict';
10135
10395
 
10136
- var GetIntrinsic = __webpack_require__(58);
10137
- var define = __webpack_require__(73);
10138
- var hasDescriptors = __webpack_require__(76)();
10139
- var gOPD = __webpack_require__(75);
10396
+ /** @type {import('./reflectApply')} */
10397
+ module.exports = typeof Reflect !== 'undefined' && Reflect && Reflect.apply;
10140
10398
 
10141
- var $TypeError = __webpack_require__(64);
10142
- var $floor = GetIntrinsic('%Math.floor%');
10143
10399
 
10144
- /** @type {import('.')} */
10145
- module.exports = function setFunctionLength(fn, length) {
10146
- if (typeof fn !== 'function') {
10147
- throw new $TypeError('`fn` is not a function');
10148
- }
10149
- if (typeof length !== 'number' || length < 0 || length > 0xFFFFFFFF || $floor(length) !== length) {
10150
- throw new $TypeError('`length` must be a positive 32-bit integer');
10151
- }
10400
+ /***/ }),
10401
+ /* 90 */
10402
+ /***/ (function(module, exports, __webpack_require__) {
10152
10403
 
10153
- var loose = arguments.length > 2 && !!arguments[2];
10404
+ 'use strict';
10154
10405
 
10155
- var functionLengthIsConfigurable = true;
10156
- var functionLengthIsWritable = true;
10157
- if ('length' in fn && gOPD) {
10158
- var desc = gOPD(fn, 'length');
10159
- if (desc && !desc.configurable) {
10160
- functionLengthIsConfigurable = false;
10161
- }
10162
- if (desc && !desc.writable) {
10163
- functionLengthIsWritable = false;
10164
- }
10165
- }
10406
+ var call = Function.prototype.call;
10407
+ var $hasOwn = Object.prototype.hasOwnProperty;
10408
+ var bind = __webpack_require__(84);
10166
10409
 
10167
- if (functionLengthIsConfigurable || functionLengthIsWritable || !loose) {
10168
- if (hasDescriptors) {
10169
- define(/** @type {Parameters<define>[0]} */ (fn), 'length', length, true, true);
10170
- } else {
10171
- define(/** @type {Parameters<define>[0]} */ (fn), 'length', length);
10172
- }
10173
- }
10174
- return fn;
10175
- };
10410
+ /** @type {import('.')} */
10411
+ module.exports = bind.call(call, $hasOwn);
10176
10412
 
10177
10413
 
10178
10414
  /***/ }),
10179
- /* 73 */
10415
+ /* 91 */
10180
10416
  /***/ (function(module, exports, __webpack_require__) {
10181
10417
 
10182
10418
  'use strict';
10183
10419
 
10184
- var $defineProperty = __webpack_require__(74);
10420
+ var callBound = __webpack_require__(57);
10421
+ var safeRegexTest = __webpack_require__(92);
10422
+ var isFnRegex = safeRegexTest(/^\s*(?:function)?\*/);
10423
+ var hasToStringTag = __webpack_require__(55)();
10424
+ var getProto = __webpack_require__(79);
10185
10425
 
10186
- var $SyntaxError = __webpack_require__(63);
10187
- var $TypeError = __webpack_require__(64);
10426
+ var toStr = callBound('Object.prototype.toString');
10427
+ var fnToStr = callBound('Function.prototype.toString');
10188
10428
 
10189
- var gopd = __webpack_require__(75);
10429
+ var getGeneratorFunction = __webpack_require__(94);
10190
10430
 
10191
10431
  /** @type {import('.')} */
10192
- module.exports = function defineDataProperty(
10193
- obj,
10194
- property,
10195
- value
10196
- ) {
10197
- if (!obj || (typeof obj !== 'object' && typeof obj !== 'function')) {
10198
- throw new $TypeError('`obj` must be an object or a function`');
10199
- }
10200
- if (typeof property !== 'string' && typeof property !== 'symbol') {
10201
- throw new $TypeError('`property` must be a string or a symbol`');
10202
- }
10203
- if (arguments.length > 3 && typeof arguments[3] !== 'boolean' && arguments[3] !== null) {
10204
- throw new $TypeError('`nonEnumerable`, if provided, must be a boolean or null');
10205
- }
10206
- if (arguments.length > 4 && typeof arguments[4] !== 'boolean' && arguments[4] !== null) {
10207
- throw new $TypeError('`nonWritable`, if provided, must be a boolean or null');
10432
+ module.exports = function isGeneratorFunction(fn) {
10433
+ if (typeof fn !== 'function') {
10434
+ return false;
10208
10435
  }
10209
- if (arguments.length > 5 && typeof arguments[5] !== 'boolean' && arguments[5] !== null) {
10210
- throw new $TypeError('`nonConfigurable`, if provided, must be a boolean or null');
10436
+ if (isFnRegex(fnToStr(fn))) {
10437
+ return true;
10211
10438
  }
10212
- if (arguments.length > 6 && typeof arguments[6] !== 'boolean') {
10213
- throw new $TypeError('`loose`, if provided, must be a boolean');
10439
+ if (!hasToStringTag) {
10440
+ var str = toStr(fn);
10441
+ return str === '[object GeneratorFunction]';
10214
10442
  }
10215
-
10216
- var nonEnumerable = arguments.length > 3 ? arguments[3] : null;
10217
- var nonWritable = arguments.length > 4 ? arguments[4] : null;
10218
- var nonConfigurable = arguments.length > 5 ? arguments[5] : null;
10219
- var loose = arguments.length > 6 ? arguments[6] : false;
10220
-
10221
- /* @type {false | TypedPropertyDescriptor<unknown>} */
10222
- var desc = !!gopd && gopd(obj, property);
10223
-
10224
- if ($defineProperty) {
10225
- $defineProperty(obj, property, {
10226
- configurable: nonConfigurable === null && desc ? desc.configurable : !nonConfigurable,
10227
- enumerable: nonEnumerable === null && desc ? desc.enumerable : !nonEnumerable,
10228
- value: value,
10229
- writable: nonWritable === null && desc ? desc.writable : !nonWritable
10230
- });
10231
- } else if (loose || (!nonEnumerable && !nonWritable && !nonConfigurable)) {
10232
- // must fall back to [[Set]], and was not explicitly asked to make non-enumerable, non-writable, or non-configurable
10233
- obj[property] = value; // eslint-disable-line no-param-reassign
10234
- } else {
10235
- throw new $SyntaxError('This environment does not support defining a property as non-configurable, non-writable, or non-enumerable.');
10443
+ if (!getProto) {
10444
+ return false;
10236
10445
  }
10446
+ var GeneratorFunction = getGeneratorFunction();
10447
+ return GeneratorFunction && getProto(fn) === GeneratorFunction.prototype;
10237
10448
  };
10238
10449
 
10239
10450
 
10240
10451
  /***/ }),
10241
- /* 74 */
10452
+ /* 92 */
10242
10453
  /***/ (function(module, exports, __webpack_require__) {
10243
10454
 
10244
10455
  'use strict';
10245
10456
 
10246
- var GetIntrinsic = __webpack_require__(58);
10457
+ var callBound = __webpack_require__(57);
10458
+ var isRegex = __webpack_require__(93);
10459
+
10460
+ var $exec = callBound('RegExp.prototype.exec');
10461
+ var $TypeError = __webpack_require__(65);
10247
10462
 
10248
10463
  /** @type {import('.')} */
10249
- var $defineProperty = GetIntrinsic('%Object.defineProperty%', true) || false;
10250
- if ($defineProperty) {
10251
- try {
10252
- $defineProperty({}, 'a', { value: 1 });
10253
- } catch (e) {
10254
- // IE 8 has a broken defineProperty
10255
- $defineProperty = false;
10464
+ module.exports = function regexTester(regex) {
10465
+ if (!isRegex(regex)) {
10466
+ throw new $TypeError('`regex` must be a RegExp');
10256
10467
  }
10257
- }
10258
-
10259
- module.exports = $defineProperty;
10468
+ return function test(s) {
10469
+ return $exec(regex, s) !== null;
10470
+ };
10471
+ };
10260
10472
 
10261
10473
 
10262
10474
  /***/ }),
10263
- /* 75 */
10475
+ /* 93 */
10264
10476
  /***/ (function(module, exports, __webpack_require__) {
10265
10477
 
10266
10478
  'use strict';
10267
10479
 
10268
- var GetIntrinsic = __webpack_require__(58);
10269
-
10270
- var $gOPD = GetIntrinsic('%Object.getOwnPropertyDescriptor%', true);
10480
+ var callBound = __webpack_require__(57);
10481
+ var hasToStringTag = __webpack_require__(55)();
10482
+ var hasOwn = __webpack_require__(90);
10483
+ var gOPD = __webpack_require__(75);
10271
10484
 
10272
- if ($gOPD) {
10273
- try {
10274
- $gOPD([], 'length');
10275
- } catch (e) {
10276
- // IE 8 has a broken gOPD
10277
- $gOPD = null;
10278
- }
10279
- }
10485
+ /** @type {import('.')} */
10486
+ var fn;
10280
10487
 
10281
- module.exports = $gOPD;
10488
+ if (hasToStringTag) {
10489
+ /** @type {(receiver: ThisParameterType<typeof RegExp.prototype.exec>, ...args: Parameters<typeof RegExp.prototype.exec>) => ReturnType<typeof RegExp.prototype.exec>} */
10490
+ var $exec = callBound('RegExp.prototype.exec');
10491
+ /** @type {object} */
10492
+ var isRegexMarker = {};
10282
10493
 
10494
+ var throwRegexMarker = function () {
10495
+ throw isRegexMarker;
10496
+ };
10497
+ /** @type {{ toString(): never, valueOf(): never, [Symbol.toPrimitive]?(): never }} */
10498
+ var badStringifier = {
10499
+ toString: throwRegexMarker,
10500
+ valueOf: throwRegexMarker
10501
+ };
10283
10502
 
10284
- /***/ }),
10285
- /* 76 */
10286
- /***/ (function(module, exports, __webpack_require__) {
10503
+ if (typeof Symbol.toPrimitive === 'symbol') {
10504
+ badStringifier[Symbol.toPrimitive] = throwRegexMarker;
10505
+ }
10287
10506
 
10288
- 'use strict';
10507
+ /** @type {import('.')} */
10508
+ // @ts-expect-error TS can't figure out that the $exec call always throws
10509
+ // eslint-disable-next-line consistent-return
10510
+ fn = function isRegex(value) {
10511
+ if (!value || typeof value !== 'object') {
10512
+ return false;
10513
+ }
10289
10514
 
10290
- var $defineProperty = __webpack_require__(74);
10515
+ // eslint-disable-next-line no-extra-parens
10516
+ var descriptor = /** @type {NonNullable<typeof gOPD>} */ (gOPD)(/** @type {{ lastIndex?: unknown }} */ (value), 'lastIndex');
10517
+ var hasLastIndexDataProperty = descriptor && hasOwn(descriptor, 'value');
10518
+ if (!hasLastIndexDataProperty) {
10519
+ return false;
10520
+ }
10291
10521
 
10292
- var hasPropertyDescriptors = function hasPropertyDescriptors() {
10293
- return !!$defineProperty;
10294
- };
10522
+ try {
10523
+ // eslint-disable-next-line no-extra-parens
10524
+ $exec(value, /** @type {string} */ (/** @type {unknown} */ (badStringifier)));
10525
+ } catch (e) {
10526
+ return e === isRegexMarker;
10527
+ }
10528
+ };
10529
+ } else {
10530
+ /** @type {(receiver: ThisParameterType<typeof Object.prototype.toString>, ...args: Parameters<typeof Object.prototype.toString>) => ReturnType<typeof Object.prototype.toString>} */
10531
+ var $toString = callBound('Object.prototype.toString');
10532
+ /** @const @type {'[object RegExp]'} */
10533
+ var regexClass = '[object RegExp]';
10534
+
10535
+ /** @type {import('.')} */
10536
+ fn = function isRegex(value) {
10537
+ // In older browsers, typeof regex incorrectly returns 'function'
10538
+ if (!value || (typeof value !== 'object' && typeof value !== 'function')) {
10539
+ return false;
10540
+ }
10295
10541
 
10296
- hasPropertyDescriptors.hasArrayLengthDefineBug = function hasArrayLengthDefineBug() {
10297
- // node v0.6 has a bug where array lengths can be Set but not Defined
10298
- if (!$defineProperty) {
10299
- return null;
10300
- }
10301
- try {
10302
- return $defineProperty([], 'length', { value: 1 }).length !== 1;
10303
- } catch (e) {
10304
- // In Firefox 4-22, defining length on an array throws an exception.
10305
- return true;
10306
- }
10307
- };
10542
+ return $toString(value) === regexClass;
10543
+ };
10544
+ }
10308
10545
 
10309
- module.exports = hasPropertyDescriptors;
10546
+ module.exports = fn;
10310
10547
 
10311
10548
 
10312
10549
  /***/ }),
10313
- /* 77 */
10314
- /***/ (function(module, exports, __webpack_require__) {
10550
+ /* 94 */
10551
+ /***/ (function(module, exports) {
10315
10552
 
10316
10553
  'use strict';
10317
10554
 
10318
- var toStr = Object.prototype.toString;
10319
- var fnToStr = Function.prototype.toString;
10320
- var isFnRegex = /^\s*(?:function)?\*/;
10321
- var hasToStringTag = __webpack_require__(55)();
10322
- var getProto = Object.getPrototypeOf;
10323
- var getGeneratorFunc = function () { // eslint-disable-line consistent-return
10324
- if (!hasToStringTag) {
10325
- return false;
10326
- }
10327
- try {
10328
- return Function('return function*() {}')();
10329
- } catch (e) {
10330
- }
10331
- };
10332
- var GeneratorFunction;
10555
+ /** @type {GeneratorFunctionConstructor | false} */
10556
+ var cached;
10333
10557
 
10334
- module.exports = function isGeneratorFunction(fn) {
10335
- if (typeof fn !== 'function') {
10336
- return false;
10337
- }
10338
- if (isFnRegex.test(fnToStr.call(fn))) {
10339
- return true;
10340
- }
10341
- if (!hasToStringTag) {
10342
- var str = toStr.call(fn);
10343
- return str === '[object GeneratorFunction]';
10344
- }
10345
- if (!getProto) {
10346
- return false;
10347
- }
10348
- if (typeof GeneratorFunction === 'undefined') {
10349
- var generatorFunc = getGeneratorFunc();
10350
- GeneratorFunction = generatorFunc ? getProto(generatorFunc) : false;
10558
+ /** @type {import('./index.js')} */
10559
+ module.exports = function getGeneratorFunction() {
10560
+ if (typeof cached === 'undefined') {
10561
+ try {
10562
+ // eslint-disable-next-line no-new-func
10563
+ cached = Function('return function* () {}')().constructor;
10564
+ } catch (e) {
10565
+ cached = false;
10566
+ }
10351
10567
  }
10352
- return getProto(fn) === GeneratorFunction;
10568
+ return cached;
10353
10569
  };
10354
10570
 
10355
10571
 
10572
+
10356
10573
  /***/ }),
10357
- /* 78 */
10574
+ /* 95 */
10358
10575
  /***/ (function(module, exports, __webpack_require__) {
10359
10576
 
10360
10577
  /* WEBPACK VAR INJECTION */(function(global) {'use strict';
10361
10578
 
10362
- var forEach = __webpack_require__(79);
10363
- var availableTypedArrays = __webpack_require__(81);
10364
- var callBind = __webpack_require__(71);
10579
+ var forEach = __webpack_require__(96);
10580
+ var availableTypedArrays = __webpack_require__(98);
10581
+ var callBind = __webpack_require__(100);
10365
10582
  var callBound = __webpack_require__(57);
10366
10583
  var gOPD = __webpack_require__(75);
10584
+ var getProto = __webpack_require__(79);
10367
10585
 
10368
- /** @type {(O: object) => string} */
10369
10586
  var $toString = callBound('Object.prototype.toString');
10370
10587
  var hasToStringTag = __webpack_require__(55)();
10371
10588
 
@@ -10373,7 +10590,6 @@ return /******/ (function(modules) { // webpackBootstrap
10373
10590
  var typedArrays = availableTypedArrays();
10374
10591
 
10375
10592
  var $slice = callBound('String.prototype.slice');
10376
- var getPrototypeOf = Object.getPrototypeOf; // require('getprototypeof');
10377
10593
 
10378
10594
  /** @type {<T = unknown>(array: readonly T[], value: unknown) => number} */
10379
10595
  var $indexOf = callBound('Array.prototype.indexOf', true) || function indexOf(array, value) {
@@ -10385,18 +10601,18 @@ return /******/ (function(modules) { // webpackBootstrap
10385
10601
  return -1;
10386
10602
  };
10387
10603
 
10388
- /** @typedef {(receiver: import('.').TypedArray) => string | typeof Uint8Array.prototype.slice.call | typeof Uint8Array.prototype.set.call} Getter */
10389
- /** @type {{ [k in `\$${import('.').TypedArrayName}`]?: Getter } & { __proto__: null }} */
10604
+ /** @typedef {import('./types').Getter} Getter */
10605
+ /** @type {import('./types').Cache} */
10390
10606
  var cache = { __proto__: null };
10391
- if (hasToStringTag && gOPD && getPrototypeOf) {
10607
+ if (hasToStringTag && gOPD && getProto) {
10392
10608
  forEach(typedArrays, function (typedArray) {
10393
10609
  var arr = new g[typedArray]();
10394
- if (Symbol.toStringTag in arr) {
10395
- var proto = getPrototypeOf(arr);
10610
+ if (Symbol.toStringTag in arr && getProto) {
10611
+ var proto = getProto(arr);
10396
10612
  // @ts-expect-error TS won't narrow inside a closure
10397
10613
  var descriptor = gOPD(proto, Symbol.toStringTag);
10398
- if (!descriptor) {
10399
- var superProto = getPrototypeOf(proto);
10614
+ if (!descriptor && proto) {
10615
+ var superProto = getProto(proto);
10400
10616
  // @ts-expect-error TS won't narrow inside a closure
10401
10617
  descriptor = gOPD(superProto, Symbol.toStringTag);
10402
10618
  }
@@ -10409,8 +10625,12 @@ return /******/ (function(modules) { // webpackBootstrap
10409
10625
  var arr = new g[typedArray]();
10410
10626
  var fn = arr.slice || arr.set;
10411
10627
  if (fn) {
10412
- // @ts-expect-error TODO: fix
10413
- cache['$' + typedArray] = callBind(fn);
10628
+ cache[
10629
+ /** @type {`$${import('.').TypedArrayName}`} */ ('$' + typedArray)
10630
+ ] = /** @type {import('./types').BoundSlice | import('./types').BoundSet} */ (
10631
+ // @ts-expect-error TODO FIXME
10632
+ callBind(fn)
10633
+ );
10414
10634
  }
10415
10635
  });
10416
10636
  }
@@ -10419,15 +10639,14 @@ return /******/ (function(modules) { // webpackBootstrap
10419
10639
  var tryTypedArrays = function tryAllTypedArrays(value) {
10420
10640
  /** @type {ReturnType<typeof tryAllTypedArrays>} */ var found = false;
10421
10641
  forEach(
10422
- // eslint-disable-next-line no-extra-parens
10423
- /** @type {Record<`\$${TypedArrayName}`, Getter>} */ /** @type {any} */ (cache),
10642
+ /** @type {Record<`\$${import('.').TypedArrayName}`, Getter>} */ (cache),
10424
10643
  /** @type {(getter: Getter, name: `\$${import('.').TypedArrayName}`) => void} */
10425
10644
  function (getter, typedArray) {
10426
10645
  if (!found) {
10427
10646
  try {
10428
- // @ts-expect-error TODO: fix
10647
+ // @ts-expect-error a throw is fine here
10429
10648
  if ('$' + getter(value) === typedArray) {
10430
- found = $slice(typedArray, 1);
10649
+ found = /** @type {import('.').TypedArrayName} */ ($slice(typedArray, 1));
10431
10650
  }
10432
10651
  } catch (e) { /**/ }
10433
10652
  }
@@ -10440,14 +10659,13 @@ return /******/ (function(modules) { // webpackBootstrap
10440
10659
  var trySlices = function tryAllSlices(value) {
10441
10660
  /** @type {ReturnType<typeof tryAllSlices>} */ var found = false;
10442
10661
  forEach(
10443
- // eslint-disable-next-line no-extra-parens
10444
- /** @type {Record<`\$${TypedArrayName}`, Getter>} */ /** @type {any} */ (cache),
10445
- /** @type {(getter: typeof cache, name: `\$${import('.').TypedArrayName}`) => void} */ function (getter, name) {
10662
+ /** @type {Record<`\$${import('.').TypedArrayName}`, Getter>} */(cache),
10663
+ /** @type {(getter: Getter, name: `\$${import('.').TypedArrayName}`) => void} */ function (getter, name) {
10446
10664
  if (!found) {
10447
10665
  try {
10448
- // @ts-expect-error TODO: fix
10666
+ // @ts-expect-error a throw is fine here
10449
10667
  getter(value);
10450
- found = $slice(name, 1);
10668
+ found = /** @type {import('.').TypedArrayName} */ ($slice(name, 1));
10451
10669
  } catch (e) { /**/ }
10452
10670
  }
10453
10671
  }
@@ -10477,16 +10695,17 @@ return /******/ (function(modules) { // webpackBootstrap
10477
10695
  /* WEBPACK VAR INJECTION */}.call(exports, (function() { return this; }())))
10478
10696
 
10479
10697
  /***/ }),
10480
- /* 79 */
10698
+ /* 96 */
10481
10699
  /***/ (function(module, exports, __webpack_require__) {
10482
10700
 
10483
10701
  'use strict';
10484
10702
 
10485
- var isCallable = __webpack_require__(80);
10703
+ var isCallable = __webpack_require__(97);
10486
10704
 
10487
10705
  var toStr = Object.prototype.toString;
10488
10706
  var hasOwnProperty = Object.prototype.hasOwnProperty;
10489
10707
 
10708
+ /** @type {<This, A extends readonly unknown[]>(arr: A, iterator: (this: This | void, value: A[number], index: number, arr: A) => void, receiver: This | undefined) => void} */
10490
10709
  var forEachArray = function forEachArray(array, iterator, receiver) {
10491
10710
  for (var i = 0, len = array.length; i < len; i++) {
10492
10711
  if (hasOwnProperty.call(array, i)) {
@@ -10499,6 +10718,7 @@ return /******/ (function(modules) { // webpackBootstrap
10499
10718
  }
10500
10719
  };
10501
10720
 
10721
+ /** @type {<This, S extends string>(string: S, iterator: (this: This | void, value: S[number], index: number, string: S) => void, receiver: This | undefined) => void} */
10502
10722
  var forEachString = function forEachString(string, iterator, receiver) {
10503
10723
  for (var i = 0, len = string.length; i < len; i++) {
10504
10724
  // no such thing as a sparse string.
@@ -10510,6 +10730,7 @@ return /******/ (function(modules) { // webpackBootstrap
10510
10730
  }
10511
10731
  };
10512
10732
 
10733
+ /** @type {<This, O>(obj: O, iterator: (this: This | void, value: O[keyof O], index: keyof O, obj: O) => void, receiver: This | undefined) => void} */
10513
10734
  var forEachObject = function forEachObject(object, iterator, receiver) {
10514
10735
  for (var k in object) {
10515
10736
  if (hasOwnProperty.call(object, k)) {
@@ -10522,7 +10743,13 @@ return /******/ (function(modules) { // webpackBootstrap
10522
10743
  }
10523
10744
  };
10524
10745
 
10525
- var forEach = function forEach(list, iterator, thisArg) {
10746
+ /** @type {(x: unknown) => x is readonly unknown[]} */
10747
+ function isArray(x) {
10748
+ return toStr.call(x) === '[object Array]';
10749
+ }
10750
+
10751
+ /** @type {import('.')._internal} */
10752
+ module.exports = function forEach(list, iterator, thisArg) {
10526
10753
  if (!isCallable(iterator)) {
10527
10754
  throw new TypeError('iterator must be a function');
10528
10755
  }
@@ -10532,7 +10759,7 @@ return /******/ (function(modules) { // webpackBootstrap
10532
10759
  receiver = thisArg;
10533
10760
  }
10534
10761
 
10535
- if (toStr.call(list) === '[object Array]') {
10762
+ if (isArray(list)) {
10536
10763
  forEachArray(list, iterator, receiver);
10537
10764
  } else if (typeof list === 'string') {
10538
10765
  forEachString(list, iterator, receiver);
@@ -10541,11 +10768,9 @@ return /******/ (function(modules) { // webpackBootstrap
10541
10768
  }
10542
10769
  };
10543
10770
 
10544
- module.exports = forEach;
10545
-
10546
10771
 
10547
10772
  /***/ }),
10548
- /* 80 */
10773
+ /* 97 */
10549
10774
  /***/ (function(module, exports) {
10550
10775
 
10551
10776
  'use strict';
@@ -10652,12 +10877,12 @@ return /******/ (function(modules) { // webpackBootstrap
10652
10877
 
10653
10878
 
10654
10879
  /***/ }),
10655
- /* 81 */
10880
+ /* 98 */
10656
10881
  /***/ (function(module, exports, __webpack_require__) {
10657
10882
 
10658
10883
  /* WEBPACK VAR INJECTION */(function(global) {'use strict';
10659
10884
 
10660
- var possibleNames = __webpack_require__(82);
10885
+ var possibleNames = __webpack_require__(99);
10661
10886
 
10662
10887
  var g = typeof globalThis === 'undefined' ? global : globalThis;
10663
10888
 
@@ -10676,13 +10901,14 @@ return /******/ (function(modules) { // webpackBootstrap
10676
10901
  /* WEBPACK VAR INJECTION */}.call(exports, (function() { return this; }())))
10677
10902
 
10678
10903
  /***/ }),
10679
- /* 82 */
10904
+ /* 99 */
10680
10905
  /***/ (function(module, exports) {
10681
10906
 
10682
10907
  'use strict';
10683
10908
 
10684
10909
  /** @type {import('.')} */
10685
10910
  module.exports = [
10911
+ 'Float16Array',
10686
10912
  'Float32Array',
10687
10913
  'Float64Array',
10688
10914
  'Int8Array',
@@ -10698,12 +10924,196 @@ return /******/ (function(modules) { // webpackBootstrap
10698
10924
 
10699
10925
 
10700
10926
  /***/ }),
10701
- /* 83 */
10927
+ /* 100 */
10928
+ /***/ (function(module, exports, __webpack_require__) {
10929
+
10930
+ 'use strict';
10931
+
10932
+ var setFunctionLength = __webpack_require__(101);
10933
+
10934
+ var $defineProperty = __webpack_require__(77);
10935
+
10936
+ var callBindBasic = __webpack_require__(83);
10937
+ var applyBind = __webpack_require__(104);
10938
+
10939
+ module.exports = function callBind(originalFunction) {
10940
+ var func = callBindBasic(arguments);
10941
+ var adjustedLength = originalFunction.length - (arguments.length - 1);
10942
+ return setFunctionLength(
10943
+ func,
10944
+ 1 + (adjustedLength > 0 ? adjustedLength : 0),
10945
+ true
10946
+ );
10947
+ };
10948
+
10949
+ if ($defineProperty) {
10950
+ $defineProperty(module.exports, 'apply', { value: applyBind });
10951
+ } else {
10952
+ module.exports.apply = applyBind;
10953
+ }
10954
+
10955
+
10956
+ /***/ }),
10957
+ /* 101 */
10958
+ /***/ (function(module, exports, __webpack_require__) {
10959
+
10960
+ 'use strict';
10961
+
10962
+ var GetIntrinsic = __webpack_require__(58);
10963
+ var define = __webpack_require__(102);
10964
+ var hasDescriptors = __webpack_require__(103)();
10965
+ var gOPD = __webpack_require__(75);
10966
+
10967
+ var $TypeError = __webpack_require__(65);
10968
+ var $floor = GetIntrinsic('%Math.floor%');
10969
+
10970
+ /** @type {import('.')} */
10971
+ module.exports = function setFunctionLength(fn, length) {
10972
+ if (typeof fn !== 'function') {
10973
+ throw new $TypeError('`fn` is not a function');
10974
+ }
10975
+ if (typeof length !== 'number' || length < 0 || length > 0xFFFFFFFF || $floor(length) !== length) {
10976
+ throw new $TypeError('`length` must be a positive 32-bit integer');
10977
+ }
10978
+
10979
+ var loose = arguments.length > 2 && !!arguments[2];
10980
+
10981
+ var functionLengthIsConfigurable = true;
10982
+ var functionLengthIsWritable = true;
10983
+ if ('length' in fn && gOPD) {
10984
+ var desc = gOPD(fn, 'length');
10985
+ if (desc && !desc.configurable) {
10986
+ functionLengthIsConfigurable = false;
10987
+ }
10988
+ if (desc && !desc.writable) {
10989
+ functionLengthIsWritable = false;
10990
+ }
10991
+ }
10992
+
10993
+ if (functionLengthIsConfigurable || functionLengthIsWritable || !loose) {
10994
+ if (hasDescriptors) {
10995
+ define(/** @type {Parameters<define>[0]} */ (fn), 'length', length, true, true);
10996
+ } else {
10997
+ define(/** @type {Parameters<define>[0]} */ (fn), 'length', length);
10998
+ }
10999
+ }
11000
+ return fn;
11001
+ };
11002
+
11003
+
11004
+ /***/ }),
11005
+ /* 102 */
11006
+ /***/ (function(module, exports, __webpack_require__) {
11007
+
11008
+ 'use strict';
11009
+
11010
+ var $defineProperty = __webpack_require__(77);
11011
+
11012
+ var $SyntaxError = __webpack_require__(64);
11013
+ var $TypeError = __webpack_require__(65);
11014
+
11015
+ var gopd = __webpack_require__(75);
11016
+
11017
+ /** @type {import('.')} */
11018
+ module.exports = function defineDataProperty(
11019
+ obj,
11020
+ property,
11021
+ value
11022
+ ) {
11023
+ if (!obj || (typeof obj !== 'object' && typeof obj !== 'function')) {
11024
+ throw new $TypeError('`obj` must be an object or a function`');
11025
+ }
11026
+ if (typeof property !== 'string' && typeof property !== 'symbol') {
11027
+ throw new $TypeError('`property` must be a string or a symbol`');
11028
+ }
11029
+ if (arguments.length > 3 && typeof arguments[3] !== 'boolean' && arguments[3] !== null) {
11030
+ throw new $TypeError('`nonEnumerable`, if provided, must be a boolean or null');
11031
+ }
11032
+ if (arguments.length > 4 && typeof arguments[4] !== 'boolean' && arguments[4] !== null) {
11033
+ throw new $TypeError('`nonWritable`, if provided, must be a boolean or null');
11034
+ }
11035
+ if (arguments.length > 5 && typeof arguments[5] !== 'boolean' && arguments[5] !== null) {
11036
+ throw new $TypeError('`nonConfigurable`, if provided, must be a boolean or null');
11037
+ }
11038
+ if (arguments.length > 6 && typeof arguments[6] !== 'boolean') {
11039
+ throw new $TypeError('`loose`, if provided, must be a boolean');
11040
+ }
11041
+
11042
+ var nonEnumerable = arguments.length > 3 ? arguments[3] : null;
11043
+ var nonWritable = arguments.length > 4 ? arguments[4] : null;
11044
+ var nonConfigurable = arguments.length > 5 ? arguments[5] : null;
11045
+ var loose = arguments.length > 6 ? arguments[6] : false;
11046
+
11047
+ /* @type {false | TypedPropertyDescriptor<unknown>} */
11048
+ var desc = !!gopd && gopd(obj, property);
11049
+
11050
+ if ($defineProperty) {
11051
+ $defineProperty(obj, property, {
11052
+ configurable: nonConfigurable === null && desc ? desc.configurable : !nonConfigurable,
11053
+ enumerable: nonEnumerable === null && desc ? desc.enumerable : !nonEnumerable,
11054
+ value: value,
11055
+ writable: nonWritable === null && desc ? desc.writable : !nonWritable
11056
+ });
11057
+ } else if (loose || (!nonEnumerable && !nonWritable && !nonConfigurable)) {
11058
+ // must fall back to [[Set]], and was not explicitly asked to make non-enumerable, non-writable, or non-configurable
11059
+ obj[property] = value; // eslint-disable-line no-param-reassign
11060
+ } else {
11061
+ throw new $SyntaxError('This environment does not support defining a property as non-configurable, non-writable, or non-enumerable.');
11062
+ }
11063
+ };
11064
+
11065
+
11066
+ /***/ }),
11067
+ /* 103 */
11068
+ /***/ (function(module, exports, __webpack_require__) {
11069
+
11070
+ 'use strict';
11071
+
11072
+ var $defineProperty = __webpack_require__(77);
11073
+
11074
+ var hasPropertyDescriptors = function hasPropertyDescriptors() {
11075
+ return !!$defineProperty;
11076
+ };
11077
+
11078
+ hasPropertyDescriptors.hasArrayLengthDefineBug = function hasArrayLengthDefineBug() {
11079
+ // node v0.6 has a bug where array lengths can be Set but not Defined
11080
+ if (!$defineProperty) {
11081
+ return null;
11082
+ }
11083
+ try {
11084
+ return $defineProperty([], 'length', { value: 1 }).length !== 1;
11085
+ } catch (e) {
11086
+ // In Firefox 4-22, defining length on an array throws an exception.
11087
+ return true;
11088
+ }
11089
+ };
11090
+
11091
+ module.exports = hasPropertyDescriptors;
11092
+
11093
+
11094
+ /***/ }),
11095
+ /* 104 */
11096
+ /***/ (function(module, exports, __webpack_require__) {
11097
+
11098
+ 'use strict';
11099
+
11100
+ var bind = __webpack_require__(84);
11101
+ var $apply = __webpack_require__(88);
11102
+ var actualApply = __webpack_require__(87);
11103
+
11104
+ /** @type {import('./applyBind')} */
11105
+ module.exports = function applyBind() {
11106
+ return actualApply(bind, $apply, arguments);
11107
+ };
11108
+
11109
+
11110
+ /***/ }),
11111
+ /* 105 */
10702
11112
  /***/ (function(module, exports, __webpack_require__) {
10703
11113
 
10704
11114
  'use strict';
10705
11115
 
10706
- var whichTypedArray = __webpack_require__(78);
11116
+ var whichTypedArray = __webpack_require__(95);
10707
11117
 
10708
11118
  /** @type {import('.')} */
10709
11119
  module.exports = function isTypedArray(value) {
@@ -10712,7 +11122,7 @@ return /******/ (function(modules) { // webpackBootstrap
10712
11122
 
10713
11123
 
10714
11124
  /***/ }),
10715
- /* 84 */
11125
+ /* 106 */
10716
11126
  /***/ (function(module, exports) {
10717
11127
 
10718
11128
  module.exports = function isBuffer(arg) {
@@ -10723,7 +11133,7 @@ return /******/ (function(modules) { // webpackBootstrap
10723
11133
  }
10724
11134
 
10725
11135
  /***/ }),
10726
- /* 85 */
11136
+ /* 107 */
10727
11137
  /***/ (function(module, exports) {
10728
11138
 
10729
11139
  if (typeof Object.create === 'function') {
@@ -10756,14 +11166,14 @@ return /******/ (function(modules) { // webpackBootstrap
10756
11166
 
10757
11167
 
10758
11168
  /***/ }),
10759
- /* 86 */
11169
+ /* 108 */
10760
11170
  /***/ (function(module, exports, __webpack_require__) {
10761
11171
 
10762
11172
  /* WEBPACK VAR INJECTION */(function(process) {var AWS = __webpack_require__(1);
10763
- var AcceptorStateMachine = __webpack_require__(87);
11173
+ var AcceptorStateMachine = __webpack_require__(109);
10764
11174
  var inherit = AWS.util.inherit;
10765
11175
  var domain = AWS.util.domain;
10766
- var jmespath = __webpack_require__(88);
11176
+ var jmespath = __webpack_require__(110);
10767
11177
 
10768
11178
  /**
10769
11179
  * @api private
@@ -11572,7 +11982,7 @@ return /******/ (function(modules) { // webpackBootstrap
11572
11982
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
11573
11983
 
11574
11984
  /***/ }),
11575
- /* 87 */
11985
+ /* 109 */
11576
11986
  /***/ (function(module, exports) {
11577
11987
 
11578
11988
  function AcceptorStateMachine(states, state) {
@@ -11623,7 +12033,7 @@ return /******/ (function(modules) { // webpackBootstrap
11623
12033
 
11624
12034
 
11625
12035
  /***/ }),
11626
- /* 88 */
12036
+ /* 110 */
11627
12037
  /***/ (function(module, exports, __webpack_require__) {
11628
12038
 
11629
12039
  (function(exports) {
@@ -13301,12 +13711,12 @@ return /******/ (function(modules) { // webpackBootstrap
13301
13711
 
13302
13712
 
13303
13713
  /***/ }),
13304
- /* 89 */
13714
+ /* 111 */
13305
13715
  /***/ (function(module, exports, __webpack_require__) {
13306
13716
 
13307
13717
  var AWS = __webpack_require__(1);
13308
13718
  var inherit = AWS.util.inherit;
13309
- var jmespath = __webpack_require__(88);
13719
+ var jmespath = __webpack_require__(110);
13310
13720
 
13311
13721
  /**
13312
13722
  * This class encapsulates the response information
@@ -13508,7 +13918,7 @@ return /******/ (function(modules) { // webpackBootstrap
13508
13918
 
13509
13919
 
13510
13920
  /***/ }),
13511
- /* 90 */
13921
+ /* 112 */
13512
13922
  /***/ (function(module, exports, __webpack_require__) {
13513
13923
 
13514
13924
  /**
@@ -13528,7 +13938,7 @@ return /******/ (function(modules) { // webpackBootstrap
13528
13938
 
13529
13939
  var AWS = __webpack_require__(1);
13530
13940
  var inherit = AWS.util.inherit;
13531
- var jmespath = __webpack_require__(88);
13941
+ var jmespath = __webpack_require__(110);
13532
13942
 
13533
13943
  /**
13534
13944
  * @api private
@@ -13718,7 +14128,7 @@ return /******/ (function(modules) { // webpackBootstrap
13718
14128
 
13719
14129
 
13720
14130
  /***/ }),
13721
- /* 91 */
14131
+ /* 113 */
13722
14132
  /***/ (function(module, exports, __webpack_require__) {
13723
14133
 
13724
14134
  var AWS = __webpack_require__(1);
@@ -13755,17 +14165,17 @@ return /******/ (function(modules) { // webpackBootstrap
13755
14165
  throw new Error('Unknown signing version ' + version);
13756
14166
  };
13757
14167
 
13758
- __webpack_require__(92);
13759
- __webpack_require__(93);
13760
- __webpack_require__(94);
13761
- __webpack_require__(95);
13762
- __webpack_require__(97);
13763
- __webpack_require__(98);
13764
- __webpack_require__(99);
14168
+ __webpack_require__(114);
14169
+ __webpack_require__(115);
14170
+ __webpack_require__(116);
14171
+ __webpack_require__(117);
14172
+ __webpack_require__(119);
14173
+ __webpack_require__(120);
14174
+ __webpack_require__(121);
13765
14175
 
13766
14176
 
13767
14177
  /***/ }),
13768
- /* 92 */
14178
+ /* 114 */
13769
14179
  /***/ (function(module, exports, __webpack_require__) {
13770
14180
 
13771
14181
  var AWS = __webpack_require__(1);
@@ -13819,7 +14229,7 @@ return /******/ (function(modules) { // webpackBootstrap
13819
14229
 
13820
14230
 
13821
14231
  /***/ }),
13822
- /* 93 */
14232
+ /* 115 */
13823
14233
  /***/ (function(module, exports, __webpack_require__) {
13824
14234
 
13825
14235
  var AWS = __webpack_require__(1);
@@ -13902,13 +14312,13 @@ return /******/ (function(modules) { // webpackBootstrap
13902
14312
 
13903
14313
 
13904
14314
  /***/ }),
13905
- /* 94 */
14315
+ /* 116 */
13906
14316
  /***/ (function(module, exports, __webpack_require__) {
13907
14317
 
13908
14318
  var AWS = __webpack_require__(1);
13909
14319
  var inherit = AWS.util.inherit;
13910
14320
 
13911
- __webpack_require__(93);
14321
+ __webpack_require__(115);
13912
14322
 
13913
14323
  /**
13914
14324
  * @api private
@@ -13933,11 +14343,11 @@ return /******/ (function(modules) { // webpackBootstrap
13933
14343
 
13934
14344
 
13935
14345
  /***/ }),
13936
- /* 95 */
14346
+ /* 117 */
13937
14347
  /***/ (function(module, exports, __webpack_require__) {
13938
14348
 
13939
14349
  var AWS = __webpack_require__(1);
13940
- var v4Credentials = __webpack_require__(96);
14350
+ var v4Credentials = __webpack_require__(118);
13941
14351
  var inherit = AWS.util.inherit;
13942
14352
 
13943
14353
  /**
@@ -14154,7 +14564,7 @@ return /******/ (function(modules) { // webpackBootstrap
14154
14564
 
14155
14565
 
14156
14566
  /***/ }),
14157
- /* 96 */
14567
+ /* 118 */
14158
14568
  /***/ (function(module, exports, __webpack_require__) {
14159
14569
 
14160
14570
  var AWS = __webpack_require__(1);
@@ -14260,7 +14670,7 @@ return /******/ (function(modules) { // webpackBootstrap
14260
14670
 
14261
14671
 
14262
14672
  /***/ }),
14263
- /* 97 */
14673
+ /* 119 */
14264
14674
  /***/ (function(module, exports, __webpack_require__) {
14265
14675
 
14266
14676
  var AWS = __webpack_require__(1);
@@ -14441,7 +14851,7 @@ return /******/ (function(modules) { // webpackBootstrap
14441
14851
 
14442
14852
 
14443
14853
  /***/ }),
14444
- /* 98 */
14854
+ /* 120 */
14445
14855
  /***/ (function(module, exports, __webpack_require__) {
14446
14856
 
14447
14857
  var AWS = __webpack_require__(1);
@@ -14566,7 +14976,7 @@ return /******/ (function(modules) { // webpackBootstrap
14566
14976
 
14567
14977
 
14568
14978
  /***/ }),
14569
- /* 99 */
14979
+ /* 121 */
14570
14980
  /***/ (function(module, exports, __webpack_require__) {
14571
14981
 
14572
14982
  var AWS = __webpack_require__(1);
@@ -14586,7 +14996,7 @@ return /******/ (function(modules) { // webpackBootstrap
14586
14996
 
14587
14997
 
14588
14998
  /***/ }),
14589
- /* 100 */
14999
+ /* 122 */
14590
15000
  /***/ (function(module, exports, __webpack_require__) {
14591
15001
 
14592
15002
  var AWS = __webpack_require__(1);
@@ -14863,12 +15273,12 @@ return /******/ (function(modules) { // webpackBootstrap
14863
15273
 
14864
15274
 
14865
15275
  /***/ }),
14866
- /* 101 */
15276
+ /* 123 */
14867
15277
  /***/ (function(module, exports, __webpack_require__) {
14868
15278
 
14869
15279
  /* WEBPACK VAR INJECTION */(function(process) {var warning = [
14870
- 'The AWS SDK for JavaScript (v2) is in maintenance mode.',
14871
- ' SDK releases are limited to address critical bug fixes and security issues only.\n',
15280
+ 'The AWS SDK for JavaScript (v2) has reached end-of-support.',
15281
+ 'It will no longer receive updates or releases.\n',
14872
15282
  'Please migrate your code to use AWS SDK for JavaScript (v3).',
14873
15283
  'For more information, check the blog post at https://a.co/cUPnyil'
14874
15284
  ].join('\n');