@shipengine/alchemy 6.0.85 → 6.0.86-next.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/index.js +228 -204
  2. package/index.mjs +228 -204
  3. package/package.json +1 -1
package/index.js CHANGED
@@ -2288,7 +2288,7 @@ var syncFallback = function syncFallback(create) {
2288
2288
  var useInsertionEffect = React__namespace['useInsertion' + 'Effect'] ? React__namespace['useInsertion' + 'Effect'] : false;
2289
2289
  var useInsertionEffectAlwaysWithSyncFallback = useInsertionEffect || syncFallback;
2290
2290
 
2291
- var hasOwnProperty$c = {}.hasOwnProperty;
2291
+ var hasOwnProperty$b = {}.hasOwnProperty;
2292
2292
 
2293
2293
  var EmotionCacheContext = /* #__PURE__ */React.createContext( // we're doing this to avoid preconstruct's dead code elimination in this one case
2294
2294
  // because this module is primarily intended for the browser and node
@@ -2375,7 +2375,7 @@ var createEmotionProps = function createEmotionProps(type, props) {
2375
2375
  var newProps = {};
2376
2376
 
2377
2377
  for (var key in props) {
2378
- if (hasOwnProperty$c.call(props, key)) {
2378
+ if (hasOwnProperty$b.call(props, key)) {
2379
2379
  newProps[key] = props[key];
2380
2380
  }
2381
2381
  }
@@ -2436,7 +2436,7 @@ var Emotion = /* #__PURE__ */withEmotionCache(function (props, cache, ref) {
2436
2436
  var newProps = {};
2437
2437
 
2438
2438
  for (var key in props) {
2439
- if (hasOwnProperty$c.call(props, key) && key !== 'css' && key !== typePropName && (process.env.NODE_ENV === 'production' || key !== labelPropName)) {
2439
+ if (hasOwnProperty$b.call(props, key) && key !== 'css' && key !== typePropName && (process.env.NODE_ENV === 'production' || key !== labelPropName)) {
2440
2440
  newProps[key] = props[key];
2441
2441
  }
2442
2442
  }
@@ -2455,7 +2455,7 @@ if (process.env.NODE_ENV !== 'production') {
2455
2455
  }
2456
2456
 
2457
2457
  function jsx(type, props, key) {
2458
- if (!hasOwnProperty$c.call(props, 'css')) {
2458
+ if (!hasOwnProperty$b.call(props, 'css')) {
2459
2459
  return jsxRuntime.jsx(type, props, key);
2460
2460
  }
2461
2461
 
@@ -3467,17 +3467,17 @@ var _Symbol = Symbol$7;
3467
3467
  var Symbol$6 = _Symbol;
3468
3468
 
3469
3469
  /** Used for built-in method references. */
3470
- var objectProto$e = Object.prototype;
3470
+ var objectProto$d = Object.prototype;
3471
3471
 
3472
3472
  /** Used to check objects for own properties. */
3473
- var hasOwnProperty$b = objectProto$e.hasOwnProperty;
3473
+ var hasOwnProperty$a = objectProto$d.hasOwnProperty;
3474
3474
 
3475
3475
  /**
3476
3476
  * Used to resolve the
3477
3477
  * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)
3478
3478
  * of values.
3479
3479
  */
3480
- var nativeObjectToString$1 = objectProto$e.toString;
3480
+ var nativeObjectToString$1 = objectProto$d.toString;
3481
3481
 
3482
3482
  /** Built-in value references. */
3483
3483
  var symToStringTag$1 = Symbol$6 ? Symbol$6.toStringTag : undefined;
@@ -3490,7 +3490,7 @@ var symToStringTag$1 = Symbol$6 ? Symbol$6.toStringTag : undefined;
3490
3490
  * @returns {string} Returns the raw `toStringTag`.
3491
3491
  */
3492
3492
  function getRawTag$1(value) {
3493
- var isOwn = hasOwnProperty$b.call(value, symToStringTag$1),
3493
+ var isOwn = hasOwnProperty$a.call(value, symToStringTag$1),
3494
3494
  tag = value[symToStringTag$1];
3495
3495
 
3496
3496
  try {
@@ -3513,14 +3513,14 @@ var _getRawTag = getRawTag$1;
3513
3513
 
3514
3514
  /** Used for built-in method references. */
3515
3515
 
3516
- var objectProto$d = Object.prototype;
3516
+ var objectProto$c = Object.prototype;
3517
3517
 
3518
3518
  /**
3519
3519
  * Used to resolve the
3520
3520
  * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)
3521
3521
  * of values.
3522
3522
  */
3523
- var nativeObjectToString = objectProto$d.toString;
3523
+ var nativeObjectToString = objectProto$c.toString;
3524
3524
 
3525
3525
  /**
3526
3526
  * Converts `value` to a string using `Object.prototype.toString`.
@@ -3553,7 +3553,7 @@ var symToStringTag = Symbol$5 ? Symbol$5.toStringTag : undefined;
3553
3553
  * @param {*} value The value to query.
3554
3554
  * @returns {string} Returns the `toStringTag`.
3555
3555
  */
3556
- function baseGetTag$7(value) {
3556
+ function baseGetTag$5(value) {
3557
3557
  if (value == null) {
3558
3558
  return value === undefined ? undefinedTag : nullTag;
3559
3559
  }
@@ -3562,7 +3562,7 @@ function baseGetTag$7(value) {
3562
3562
  : objectToString$1(value);
3563
3563
  }
3564
3564
 
3565
- var _baseGetTag = baseGetTag$7;
3565
+ var _baseGetTag = baseGetTag$5;
3566
3566
 
3567
3567
  /**
3568
3568
  * Checks if `value` is the
@@ -3597,12 +3597,12 @@ function isObject$8(value) {
3597
3597
 
3598
3598
  var isObject_1 = isObject$8;
3599
3599
 
3600
- var baseGetTag$6 = _baseGetTag,
3600
+ var baseGetTag$4 = _baseGetTag,
3601
3601
  isObject$7 = isObject_1;
3602
3602
 
3603
3603
  /** `Object#toString` result references. */
3604
3604
  var asyncTag = '[object AsyncFunction]',
3605
- funcTag$2 = '[object Function]',
3605
+ funcTag$1 = '[object Function]',
3606
3606
  genTag$1 = '[object GeneratorFunction]',
3607
3607
  proxyTag = '[object Proxy]';
3608
3608
 
@@ -3629,8 +3629,8 @@ function isFunction$3(value) {
3629
3629
  }
3630
3630
  // The use of `Object#toString` avoids issues with the `typeof` operator
3631
3631
  // in Safari 9 which returns 'object' for typed arrays and other constructors.
3632
- var tag = baseGetTag$6(value);
3633
- return tag == funcTag$2 || tag == genTag$1 || tag == asyncTag || tag == proxyTag;
3632
+ var tag = baseGetTag$4(value);
3633
+ return tag == funcTag$1 || tag == genTag$1 || tag == asyncTag || tag == proxyTag;
3634
3634
  }
3635
3635
 
3636
3636
  var isFunction_1 = isFunction$3;
@@ -3707,17 +3707,17 @@ var reIsHostCtor = /^\[object .+?Constructor\]$/;
3707
3707
 
3708
3708
  /** Used for built-in method references. */
3709
3709
  var funcProto$1 = Function.prototype,
3710
- objectProto$c = Object.prototype;
3710
+ objectProto$b = Object.prototype;
3711
3711
 
3712
3712
  /** Used to resolve the decompiled source of functions. */
3713
3713
  var funcToString$1 = funcProto$1.toString;
3714
3714
 
3715
3715
  /** Used to check objects for own properties. */
3716
- var hasOwnProperty$a = objectProto$c.hasOwnProperty;
3716
+ var hasOwnProperty$9 = objectProto$b.hasOwnProperty;
3717
3717
 
3718
3718
  /** Used to detect if a method is native. */
3719
3719
  var reIsNative = RegExp('^' +
3720
- funcToString$1.call(hasOwnProperty$a).replace(reRegExpChar, '\\$&')
3720
+ funcToString$1.call(hasOwnProperty$9).replace(reRegExpChar, '\\$&')
3721
3721
  .replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, '$1.*?') + '$'
3722
3722
  );
3723
3723
 
@@ -4118,10 +4118,10 @@ var _realNames = realNames$1;
4118
4118
  var realNames = _realNames;
4119
4119
 
4120
4120
  /** Used for built-in method references. */
4121
- var objectProto$b = Object.prototype;
4121
+ var objectProto$a = Object.prototype;
4122
4122
 
4123
4123
  /** Used to check objects for own properties. */
4124
- var hasOwnProperty$9 = objectProto$b.hasOwnProperty;
4124
+ var hasOwnProperty$8 = objectProto$a.hasOwnProperty;
4125
4125
 
4126
4126
  /**
4127
4127
  * Gets the name of `func`.
@@ -4133,7 +4133,7 @@ var hasOwnProperty$9 = objectProto$b.hasOwnProperty;
4133
4133
  function getFuncName$1(func) {
4134
4134
  var result = (func.name + ''),
4135
4135
  array = realNames[result],
4136
- length = hasOwnProperty$9.call(realNames, result) ? array.length : 0;
4136
+ length = hasOwnProperty$8.call(realNames, result) ? array.length : 0;
4137
4137
 
4138
4138
  while (length--) {
4139
4139
  var data = array[length],
@@ -4223,11 +4223,11 @@ var isArray_1 = isArray$h;
4223
4223
  * // => false
4224
4224
  */
4225
4225
 
4226
- function isObjectLike$b(value) {
4226
+ function isObjectLike$8(value) {
4227
4227
  return value != null && typeof value == 'object';
4228
4228
  }
4229
4229
 
4230
- var isObjectLike_1 = isObjectLike$b;
4230
+ var isObjectLike_1 = isObjectLike$8;
4231
4231
 
4232
4232
  /**
4233
4233
  * Copies the values of `source` to `array`.
@@ -4279,14 +4279,14 @@ var LazyWrapper$1 = _LazyWrapper,
4279
4279
  LodashWrapper = _LodashWrapper,
4280
4280
  baseLodash = _baseLodash,
4281
4281
  isArray$g = isArray_1,
4282
- isObjectLike$a = isObjectLike_1,
4282
+ isObjectLike$7 = isObjectLike_1,
4283
4283
  wrapperClone = _wrapperClone;
4284
4284
 
4285
4285
  /** Used for built-in method references. */
4286
- var objectProto$a = Object.prototype;
4286
+ var objectProto$9 = Object.prototype;
4287
4287
 
4288
4288
  /** Used to check objects for own properties. */
4289
- var hasOwnProperty$8 = objectProto$a.hasOwnProperty;
4289
+ var hasOwnProperty$7 = objectProto$9.hasOwnProperty;
4290
4290
 
4291
4291
  /**
4292
4292
  * Creates a `lodash` object which wraps `value` to enable implicit method
@@ -4406,11 +4406,11 @@ var hasOwnProperty$8 = objectProto$a.hasOwnProperty;
4406
4406
  * // => true
4407
4407
  */
4408
4408
  function lodash$2(value) {
4409
- if (isObjectLike$a(value) && !isArray$g(value) && !(value instanceof LazyWrapper$1)) {
4409
+ if (isObjectLike$7(value) && !isArray$g(value) && !(value instanceof LazyWrapper$1)) {
4410
4410
  if (value instanceof LodashWrapper) {
4411
4411
  return value;
4412
4412
  }
4413
- if (hasOwnProperty$8.call(value, '__wrapped__')) {
4413
+ if (hasOwnProperty$7.call(value, '__wrapped__')) {
4414
4414
  return wrapperClone(value);
4415
4415
  }
4416
4416
  }
@@ -4905,41 +4905,33 @@ var _getHolder = getHolder$2;
4905
4905
 
4906
4906
  /** Used as references for various `Number` constants. */
4907
4907
 
4908
- var _isIndex;
4909
- var hasRequired_isIndex;
4908
+ var MAX_SAFE_INTEGER$1 = 9007199254740991;
4910
4909
 
4911
- function require_isIndex () {
4912
- if (hasRequired_isIndex) return _isIndex;
4913
- hasRequired_isIndex = 1;
4914
- var MAX_SAFE_INTEGER = 9007199254740991;
4910
+ /** Used to detect unsigned integer values. */
4911
+ var reIsUint = /^(?:0|[1-9]\d*)$/;
4915
4912
 
4916
- /** Used to detect unsigned integer values. */
4917
- var reIsUint = /^(?:0|[1-9]\d*)$/;
4918
-
4919
- /**
4920
- * Checks if `value` is a valid array-like index.
4921
- *
4922
- * @private
4923
- * @param {*} value The value to check.
4924
- * @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index.
4925
- * @returns {boolean} Returns `true` if `value` is a valid index, else `false`.
4926
- */
4927
- function isIndex(value, length) {
4928
- var type = typeof value;
4929
- length = length == null ? MAX_SAFE_INTEGER : length;
4930
-
4931
- return !!length &&
4932
- (type == 'number' ||
4933
- (type != 'symbol' && reIsUint.test(value))) &&
4934
- (value > -1 && value % 1 == 0 && value < length);
4935
- }
4913
+ /**
4914
+ * Checks if `value` is a valid array-like index.
4915
+ *
4916
+ * @private
4917
+ * @param {*} value The value to check.
4918
+ * @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index.
4919
+ * @returns {boolean} Returns `true` if `value` is a valid index, else `false`.
4920
+ */
4921
+ function isIndex$3(value, length) {
4922
+ var type = typeof value;
4923
+ length = length == null ? MAX_SAFE_INTEGER$1 : length;
4936
4924
 
4937
- _isIndex = isIndex;
4938
- return _isIndex;
4925
+ return !!length &&
4926
+ (type == 'number' ||
4927
+ (type != 'symbol' && reIsUint.test(value))) &&
4928
+ (value > -1 && value % 1 == 0 && value < length);
4939
4929
  }
4940
4930
 
4931
+ var _isIndex = isIndex$3;
4932
+
4941
4933
  var copyArray$2 = _copyArray,
4942
- isIndex$2 = require_isIndex();
4934
+ isIndex$2 = _isIndex;
4943
4935
 
4944
4936
  /* Built-in method references for those with the same name as other `lodash` methods. */
4945
4937
  var nativeMin$1 = Math.min;
@@ -5315,8 +5307,8 @@ function baseTrim$1(string) {
5315
5307
 
5316
5308
  var _baseTrim = baseTrim$1;
5317
5309
 
5318
- var baseGetTag$5 = _baseGetTag,
5319
- isObjectLike$9 = isObjectLike_1;
5310
+ var baseGetTag$3 = _baseGetTag,
5311
+ isObjectLike$6 = isObjectLike_1;
5320
5312
 
5321
5313
  /** `Object#toString` result references. */
5322
5314
  var symbolTag$3 = '[object Symbol]';
@@ -5340,7 +5332,7 @@ var symbolTag$3 = '[object Symbol]';
5340
5332
  */
5341
5333
  function isSymbol$6(value) {
5342
5334
  return typeof value == 'symbol' ||
5343
- (isObjectLike$9(value) && baseGetTag$5(value) == symbolTag$3);
5335
+ (isObjectLike$6(value) && baseGetTag$3(value) == symbolTag$3);
5344
5336
  }
5345
5337
 
5346
5338
  var isSymbol_1 = isSymbol$6;
@@ -5704,10 +5696,10 @@ var baseAssignValue$1 = _baseAssignValue,
5704
5696
  eq$1 = requireEq();
5705
5697
 
5706
5698
  /** Used for built-in method references. */
5707
- var objectProto$9 = Object.prototype;
5699
+ var objectProto$8 = Object.prototype;
5708
5700
 
5709
5701
  /** Used to check objects for own properties. */
5710
- var hasOwnProperty$7 = objectProto$9.hasOwnProperty;
5702
+ var hasOwnProperty$6 = objectProto$8.hasOwnProperty;
5711
5703
 
5712
5704
  /**
5713
5705
  * Assigns `value` to `key` of `object` if the existing value is not equivalent
@@ -5721,7 +5713,7 @@ var hasOwnProperty$7 = objectProto$9.hasOwnProperty;
5721
5713
  */
5722
5714
  function assignValue$2(object, key, value) {
5723
5715
  var objValue = object[key];
5724
- if (!(hasOwnProperty$7.call(object, key) && eq$1(objValue, value)) ||
5716
+ if (!(hasOwnProperty$6.call(object, key) && eq$1(objValue, value)) ||
5725
5717
  (value === undefined && !(key in object))) {
5726
5718
  baseAssignValue$1(object, key, value);
5727
5719
  }
@@ -5792,61 +5784,77 @@ function baseTimes$1(n, iteratee) {
5792
5784
 
5793
5785
  var _baseTimes = baseTimes$1;
5794
5786
 
5795
- var baseGetTag$4 = _baseGetTag,
5796
- isObjectLike$8 = isObjectLike_1;
5787
+ var _baseIsArguments;
5788
+ var hasRequired_baseIsArguments;
5797
5789
 
5798
- /** `Object#toString` result references. */
5799
- var argsTag$3 = '[object Arguments]';
5790
+ function require_baseIsArguments () {
5791
+ if (hasRequired_baseIsArguments) return _baseIsArguments;
5792
+ hasRequired_baseIsArguments = 1;
5793
+ var baseGetTag = _baseGetTag,
5794
+ isObjectLike = isObjectLike_1;
5800
5795
 
5801
- /**
5802
- * The base implementation of `_.isArguments`.
5803
- *
5804
- * @private
5805
- * @param {*} value The value to check.
5806
- * @returns {boolean} Returns `true` if `value` is an `arguments` object,
5807
- */
5808
- function baseIsArguments$1(value) {
5809
- return isObjectLike$8(value) && baseGetTag$4(value) == argsTag$3;
5796
+ /** `Object#toString` result references. */
5797
+ var argsTag = '[object Arguments]';
5798
+
5799
+ /**
5800
+ * The base implementation of `_.isArguments`.
5801
+ *
5802
+ * @private
5803
+ * @param {*} value The value to check.
5804
+ * @returns {boolean} Returns `true` if `value` is an `arguments` object,
5805
+ */
5806
+ function baseIsArguments(value) {
5807
+ return isObjectLike(value) && baseGetTag(value) == argsTag;
5808
+ }
5809
+
5810
+ _baseIsArguments = baseIsArguments;
5811
+ return _baseIsArguments;
5810
5812
  }
5811
5813
 
5812
- var _baseIsArguments = baseIsArguments$1;
5814
+ var isArguments_1;
5815
+ var hasRequiredIsArguments;
5813
5816
 
5814
- var baseIsArguments = _baseIsArguments,
5815
- isObjectLike$7 = isObjectLike_1;
5817
+ function requireIsArguments () {
5818
+ if (hasRequiredIsArguments) return isArguments_1;
5819
+ hasRequiredIsArguments = 1;
5820
+ var baseIsArguments = require_baseIsArguments(),
5821
+ isObjectLike = isObjectLike_1;
5816
5822
 
5817
- /** Used for built-in method references. */
5818
- var objectProto$8 = Object.prototype;
5823
+ /** Used for built-in method references. */
5824
+ var objectProto = Object.prototype;
5819
5825
 
5820
- /** Used to check objects for own properties. */
5821
- var hasOwnProperty$6 = objectProto$8.hasOwnProperty;
5826
+ /** Used to check objects for own properties. */
5827
+ var hasOwnProperty = objectProto.hasOwnProperty;
5822
5828
 
5823
- /** Built-in value references. */
5824
- var propertyIsEnumerable$1 = objectProto$8.propertyIsEnumerable;
5829
+ /** Built-in value references. */
5830
+ var propertyIsEnumerable = objectProto.propertyIsEnumerable;
5825
5831
 
5826
- /**
5827
- * Checks if `value` is likely an `arguments` object.
5828
- *
5829
- * @static
5830
- * @memberOf _
5831
- * @since 0.1.0
5832
- * @category Lang
5833
- * @param {*} value The value to check.
5834
- * @returns {boolean} Returns `true` if `value` is an `arguments` object,
5835
- * else `false`.
5836
- * @example
5837
- *
5838
- * _.isArguments(function() { return arguments; }());
5839
- * // => true
5840
- *
5841
- * _.isArguments([1, 2, 3]);
5842
- * // => false
5843
- */
5844
- var isArguments$3 = baseIsArguments(function() { return arguments; }()) ? baseIsArguments : function(value) {
5845
- return isObjectLike$7(value) && hasOwnProperty$6.call(value, 'callee') &&
5846
- !propertyIsEnumerable$1.call(value, 'callee');
5847
- };
5832
+ /**
5833
+ * Checks if `value` is likely an `arguments` object.
5834
+ *
5835
+ * @static
5836
+ * @memberOf _
5837
+ * @since 0.1.0
5838
+ * @category Lang
5839
+ * @param {*} value The value to check.
5840
+ * @returns {boolean} Returns `true` if `value` is an `arguments` object,
5841
+ * else `false`.
5842
+ * @example
5843
+ *
5844
+ * _.isArguments(function() { return arguments; }());
5845
+ * // => true
5846
+ *
5847
+ * _.isArguments([1, 2, 3]);
5848
+ * // => false
5849
+ */
5850
+ var isArguments = baseIsArguments(function() { return arguments; }()) ? baseIsArguments : function(value) {
5851
+ return isObjectLike(value) && hasOwnProperty.call(value, 'callee') &&
5852
+ !propertyIsEnumerable.call(value, 'callee');
5853
+ };
5848
5854
 
5849
- var isArguments_1 = isArguments$3;
5855
+ isArguments_1 = isArguments;
5856
+ return isArguments_1;
5857
+ }
5850
5858
 
5851
5859
  var isBufferExports = {};
5852
5860
  var isBuffer$5 = {
@@ -5945,73 +5953,81 @@ var MAX_SAFE_INTEGER = 9007199254740991;
5945
5953
  * _.isLength('3');
5946
5954
  * // => false
5947
5955
  */
5948
- function isLength$3(value) {
5956
+ function isLength$2(value) {
5949
5957
  return typeof value == 'number' &&
5950
5958
  value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER;
5951
5959
  }
5952
5960
 
5953
- var isLength_1 = isLength$3;
5961
+ var isLength_1 = isLength$2;
5954
5962
 
5955
- var baseGetTag$3 = _baseGetTag,
5956
- isLength$2 = isLength_1,
5957
- isObjectLike$6 = isObjectLike_1;
5963
+ var _baseIsTypedArray;
5964
+ var hasRequired_baseIsTypedArray;
5958
5965
 
5959
- /** `Object#toString` result references. */
5960
- var argsTag$2 = '[object Arguments]',
5961
- arrayTag$2 = '[object Array]',
5962
- boolTag$3 = '[object Boolean]',
5963
- dateTag$3 = '[object Date]',
5964
- errorTag$3 = '[object Error]',
5965
- funcTag$1 = '[object Function]',
5966
- mapTag$5 = '[object Map]',
5967
- numberTag$3 = '[object Number]',
5968
- objectTag$4 = '[object Object]',
5969
- regexpTag$3 = '[object RegExp]',
5970
- setTag$5 = '[object Set]',
5971
- stringTag$3 = '[object String]',
5972
- weakMapTag$3 = '[object WeakMap]';
5973
-
5974
- var arrayBufferTag$3 = '[object ArrayBuffer]',
5975
- dataViewTag$4 = '[object DataView]',
5976
- float32Tag$2 = '[object Float32Array]',
5977
- float64Tag$2 = '[object Float64Array]',
5978
- int8Tag$2 = '[object Int8Array]',
5979
- int16Tag$2 = '[object Int16Array]',
5980
- int32Tag$2 = '[object Int32Array]',
5981
- uint8Tag$2 = '[object Uint8Array]',
5982
- uint8ClampedTag$2 = '[object Uint8ClampedArray]',
5983
- uint16Tag$2 = '[object Uint16Array]',
5984
- uint32Tag$2 = '[object Uint32Array]';
5985
-
5986
- /** Used to identify `toStringTag` values of typed arrays. */
5987
- var typedArrayTags = {};
5988
- typedArrayTags[float32Tag$2] = typedArrayTags[float64Tag$2] =
5989
- typedArrayTags[int8Tag$2] = typedArrayTags[int16Tag$2] =
5990
- typedArrayTags[int32Tag$2] = typedArrayTags[uint8Tag$2] =
5991
- typedArrayTags[uint8ClampedTag$2] = typedArrayTags[uint16Tag$2] =
5992
- typedArrayTags[uint32Tag$2] = true;
5993
- typedArrayTags[argsTag$2] = typedArrayTags[arrayTag$2] =
5994
- typedArrayTags[arrayBufferTag$3] = typedArrayTags[boolTag$3] =
5995
- typedArrayTags[dataViewTag$4] = typedArrayTags[dateTag$3] =
5996
- typedArrayTags[errorTag$3] = typedArrayTags[funcTag$1] =
5997
- typedArrayTags[mapTag$5] = typedArrayTags[numberTag$3] =
5998
- typedArrayTags[objectTag$4] = typedArrayTags[regexpTag$3] =
5999
- typedArrayTags[setTag$5] = typedArrayTags[stringTag$3] =
6000
- typedArrayTags[weakMapTag$3] = false;
5966
+ function require_baseIsTypedArray () {
5967
+ if (hasRequired_baseIsTypedArray) return _baseIsTypedArray;
5968
+ hasRequired_baseIsTypedArray = 1;
5969
+ var baseGetTag = _baseGetTag,
5970
+ isLength = isLength_1,
5971
+ isObjectLike = isObjectLike_1;
6001
5972
 
6002
- /**
6003
- * The base implementation of `_.isTypedArray` without Node.js optimizations.
6004
- *
6005
- * @private
6006
- * @param {*} value The value to check.
6007
- * @returns {boolean} Returns `true` if `value` is a typed array, else `false`.
6008
- */
6009
- function baseIsTypedArray$1(value) {
6010
- return isObjectLike$6(value) &&
6011
- isLength$2(value.length) && !!typedArrayTags[baseGetTag$3(value)];
6012
- }
5973
+ /** `Object#toString` result references. */
5974
+ var argsTag = '[object Arguments]',
5975
+ arrayTag = '[object Array]',
5976
+ boolTag = '[object Boolean]',
5977
+ dateTag = '[object Date]',
5978
+ errorTag = '[object Error]',
5979
+ funcTag = '[object Function]',
5980
+ mapTag = '[object Map]',
5981
+ numberTag = '[object Number]',
5982
+ objectTag = '[object Object]',
5983
+ regexpTag = '[object RegExp]',
5984
+ setTag = '[object Set]',
5985
+ stringTag = '[object String]',
5986
+ weakMapTag = '[object WeakMap]';
5987
+
5988
+ var arrayBufferTag = '[object ArrayBuffer]',
5989
+ dataViewTag = '[object DataView]',
5990
+ float32Tag = '[object Float32Array]',
5991
+ float64Tag = '[object Float64Array]',
5992
+ int8Tag = '[object Int8Array]',
5993
+ int16Tag = '[object Int16Array]',
5994
+ int32Tag = '[object Int32Array]',
5995
+ uint8Tag = '[object Uint8Array]',
5996
+ uint8ClampedTag = '[object Uint8ClampedArray]',
5997
+ uint16Tag = '[object Uint16Array]',
5998
+ uint32Tag = '[object Uint32Array]';
5999
+
6000
+ /** Used to identify `toStringTag` values of typed arrays. */
6001
+ var typedArrayTags = {};
6002
+ typedArrayTags[float32Tag] = typedArrayTags[float64Tag] =
6003
+ typedArrayTags[int8Tag] = typedArrayTags[int16Tag] =
6004
+ typedArrayTags[int32Tag] = typedArrayTags[uint8Tag] =
6005
+ typedArrayTags[uint8ClampedTag] = typedArrayTags[uint16Tag] =
6006
+ typedArrayTags[uint32Tag] = true;
6007
+ typedArrayTags[argsTag] = typedArrayTags[arrayTag] =
6008
+ typedArrayTags[arrayBufferTag] = typedArrayTags[boolTag] =
6009
+ typedArrayTags[dataViewTag] = typedArrayTags[dateTag] =
6010
+ typedArrayTags[errorTag] = typedArrayTags[funcTag] =
6011
+ typedArrayTags[mapTag] = typedArrayTags[numberTag] =
6012
+ typedArrayTags[objectTag] = typedArrayTags[regexpTag] =
6013
+ typedArrayTags[setTag] = typedArrayTags[stringTag] =
6014
+ typedArrayTags[weakMapTag] = false;
6013
6015
 
6014
- var _baseIsTypedArray = baseIsTypedArray$1;
6016
+ /**
6017
+ * The base implementation of `_.isTypedArray` without Node.js optimizations.
6018
+ *
6019
+ * @private
6020
+ * @param {*} value The value to check.
6021
+ * @returns {boolean} Returns `true` if `value` is a typed array, else `false`.
6022
+ */
6023
+ function baseIsTypedArray(value) {
6024
+ return isObjectLike(value) &&
6025
+ isLength(value.length) && !!typedArrayTags[baseGetTag(value)];
6026
+ }
6027
+
6028
+ _baseIsTypedArray = baseIsTypedArray;
6029
+ return _baseIsTypedArray;
6030
+ }
6015
6031
 
6016
6032
  /**
6017
6033
  * The base implementation of `_.unary` without support for storing metadata.
@@ -6021,13 +6037,13 @@ var _baseIsTypedArray = baseIsTypedArray$1;
6021
6037
  * @returns {Function} Returns the new capped function.
6022
6038
  */
6023
6039
 
6024
- function baseUnary$3(func) {
6040
+ function baseUnary$2(func) {
6025
6041
  return function(value) {
6026
6042
  return func(value);
6027
6043
  };
6028
6044
  }
6029
6045
 
6030
- var _baseUnary = baseUnary$3;
6046
+ var _baseUnary = baseUnary$2;
6031
6047
 
6032
6048
  var _nodeUtilExports = {};
6033
6049
  var _nodeUtil = {
@@ -6068,40 +6084,48 @@ var _nodeUtil = {
6068
6084
  module.exports = nodeUtil;
6069
6085
  } (_nodeUtil, _nodeUtilExports));
6070
6086
 
6071
- var baseIsTypedArray = _baseIsTypedArray,
6072
- baseUnary$2 = _baseUnary,
6073
- nodeUtil$2 = _nodeUtilExports;
6087
+ var isTypedArray_1;
6088
+ var hasRequiredIsTypedArray;
6074
6089
 
6075
- /* Node.js helper references. */
6076
- var nodeIsTypedArray = nodeUtil$2 && nodeUtil$2.isTypedArray;
6090
+ function requireIsTypedArray () {
6091
+ if (hasRequiredIsTypedArray) return isTypedArray_1;
6092
+ hasRequiredIsTypedArray = 1;
6093
+ var baseIsTypedArray = require_baseIsTypedArray(),
6094
+ baseUnary = _baseUnary,
6095
+ nodeUtil = _nodeUtilExports;
6077
6096
 
6078
- /**
6079
- * Checks if `value` is classified as a typed array.
6080
- *
6081
- * @static
6082
- * @memberOf _
6083
- * @since 3.0.0
6084
- * @category Lang
6085
- * @param {*} value The value to check.
6086
- * @returns {boolean} Returns `true` if `value` is a typed array, else `false`.
6087
- * @example
6088
- *
6089
- * _.isTypedArray(new Uint8Array);
6090
- * // => true
6091
- *
6092
- * _.isTypedArray([]);
6093
- * // => false
6094
- */
6095
- var isTypedArray$2 = nodeIsTypedArray ? baseUnary$2(nodeIsTypedArray) : baseIsTypedArray;
6097
+ /* Node.js helper references. */
6098
+ var nodeIsTypedArray = nodeUtil && nodeUtil.isTypedArray;
6096
6099
 
6097
- var isTypedArray_1 = isTypedArray$2;
6100
+ /**
6101
+ * Checks if `value` is classified as a typed array.
6102
+ *
6103
+ * @static
6104
+ * @memberOf _
6105
+ * @since 3.0.0
6106
+ * @category Lang
6107
+ * @param {*} value The value to check.
6108
+ * @returns {boolean} Returns `true` if `value` is a typed array, else `false`.
6109
+ * @example
6110
+ *
6111
+ * _.isTypedArray(new Uint8Array);
6112
+ * // => true
6113
+ *
6114
+ * _.isTypedArray([]);
6115
+ * // => false
6116
+ */
6117
+ var isTypedArray = nodeIsTypedArray ? baseUnary(nodeIsTypedArray) : baseIsTypedArray;
6118
+
6119
+ isTypedArray_1 = isTypedArray;
6120
+ return isTypedArray_1;
6121
+ }
6098
6122
 
6099
6123
  var baseTimes = _baseTimes,
6100
- isArguments$2 = isArguments_1,
6124
+ isArguments$2 = requireIsArguments(),
6101
6125
  isArray$f = isArray_1,
6102
6126
  isBuffer$4 = isBufferExports,
6103
- isIndex$1 = require_isIndex(),
6104
- isTypedArray$1 = isTypedArray_1;
6127
+ isIndex$1 = _isIndex,
6128
+ isTypedArray$1 = requireIsTypedArray();
6105
6129
 
6106
6130
  /** Used for built-in method references. */
6107
6131
  var objectProto$7 = Object.prototype;
@@ -8806,7 +8830,7 @@ var Stack$1 = require_Stack(),
8806
8830
  getTag = _getTag,
8807
8831
  isArray$c = isArray_1,
8808
8832
  isBuffer$2 = isBufferExports,
8809
- isTypedArray = isTypedArray_1;
8833
+ isTypedArray = requireIsTypedArray();
8810
8834
 
8811
8835
  /** Used to compose bitmasks for value comparisons. */
8812
8836
  var COMPARE_PARTIAL_FLAG$2 = 1;
@@ -9429,9 +9453,9 @@ function baseHasIn$1(object, key) {
9429
9453
  var _baseHasIn = baseHasIn$1;
9430
9454
 
9431
9455
  var castPath = _castPath,
9432
- isArguments$1 = isArguments_1,
9456
+ isArguments$1 = requireIsArguments(),
9433
9457
  isArray$8 = isArray_1,
9434
- isIndex = require_isIndex(),
9458
+ isIndex = _isIndex,
9435
9459
  isLength = isLength_1,
9436
9460
  toKey$3 = _toKey;
9437
9461
 
@@ -9690,7 +9714,7 @@ function iteratee(func) {
9690
9714
  var iteratee_1 = iteratee;
9691
9715
 
9692
9716
  var Symbol$1 = _Symbol,
9693
- isArguments = isArguments_1,
9717
+ isArguments = requireIsArguments(),
9694
9718
  isArray$6 = isArray_1;
9695
9719
 
9696
9720
  /** Built-in value references. */
@@ -10144,14 +10168,14 @@ function require_baseMergeDeep () {
10144
10168
  cloneTypedArray = require_cloneTypedArray(),
10145
10169
  copyArray = _copyArray,
10146
10170
  initCloneObject = _initCloneObject,
10147
- isArguments = isArguments_1,
10171
+ isArguments = requireIsArguments(),
10148
10172
  isArray = isArray_1,
10149
10173
  isArrayLikeObject = requireIsArrayLikeObject(),
10150
10174
  isBuffer = isBufferExports,
10151
10175
  isFunction = isFunction_1,
10152
10176
  isObject = isObject_1,
10153
10177
  isPlainObject = isPlainObject_1,
10154
- isTypedArray = isTypedArray_1,
10178
+ isTypedArray = requireIsTypedArray(),
10155
10179
  safeGet = require_safeGet(),
10156
10180
  toPlainObject = requireToPlainObject();
10157
10181
 
@@ -10321,7 +10345,7 @@ function require_isIterateeCall () {
10321
10345
  hasRequired_isIterateeCall = 1;
10322
10346
  var eq = requireEq(),
10323
10347
  isArrayLike = isArrayLike_1,
10324
- isIndex = require_isIndex(),
10348
+ isIndex = _isIndex,
10325
10349
  isObject = isObject_1;
10326
10350
 
10327
10351
  /**