@shipengine/alchemy 6.0.96-next.0 → 6.0.96-next.2

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 +724 -552
  2. package/index.mjs +724 -552
  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$b = {}.hasOwnProperty;
2291
+ var hasOwnProperty$a = {}.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$b.call(props, key)) {
2378
+ if (hasOwnProperty$a.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$b.call(props, key) && key !== 'css' && key !== typePropName && (process.env.NODE_ENV === 'production' || key !== labelPropName)) {
2439
+ if (hasOwnProperty$a.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$b.call(props, 'css')) {
2458
+ if (!hasOwnProperty$a.call(props, 'css')) {
2459
2459
  return jsxRuntime.jsx(type, props, key);
2460
2460
  }
2461
2461
 
@@ -3435,11 +3435,19 @@ var _baseConvert = baseConvert$1;
3435
3435
  * // => true
3436
3436
  */
3437
3437
 
3438
- function identity$3(value) {
3439
- return value;
3440
- }
3438
+ var identity_1;
3439
+ var hasRequiredIdentity;
3441
3440
 
3442
- var identity_1 = identity$3;
3441
+ function requireIdentity () {
3442
+ if (hasRequiredIdentity) return identity_1;
3443
+ hasRequiredIdentity = 1;
3444
+ function identity(value) {
3445
+ return value;
3446
+ }
3447
+
3448
+ identity_1 = identity;
3449
+ return identity_1;
3450
+ }
3443
3451
 
3444
3452
  /** Detect free variable `global` from Node.js. */
3445
3453
 
@@ -3453,31 +3461,31 @@ var freeGlobal = _freeGlobal;
3453
3461
  var freeSelf = typeof self == 'object' && self && self.Object === Object && self;
3454
3462
 
3455
3463
  /** Used as a reference to the global object. */
3456
- var root$c = freeGlobal || freeSelf || Function('return this')();
3464
+ var root$b = freeGlobal || freeSelf || Function('return this')();
3457
3465
 
3458
- var _root = root$c;
3466
+ var _root = root$b;
3459
3467
 
3460
- var root$b = _root;
3468
+ var root$a = _root;
3461
3469
 
3462
3470
  /** Built-in value references. */
3463
- var Symbol$7 = root$b.Symbol;
3471
+ var Symbol$7 = root$a.Symbol;
3464
3472
 
3465
3473
  var _Symbol = Symbol$7;
3466
3474
 
3467
3475
  var Symbol$6 = _Symbol;
3468
3476
 
3469
3477
  /** Used for built-in method references. */
3470
- var objectProto$d = Object.prototype;
3478
+ var objectProto$c = Object.prototype;
3471
3479
 
3472
3480
  /** Used to check objects for own properties. */
3473
- var hasOwnProperty$a = objectProto$d.hasOwnProperty;
3481
+ var hasOwnProperty$9 = objectProto$c.hasOwnProperty;
3474
3482
 
3475
3483
  /**
3476
3484
  * Used to resolve the
3477
3485
  * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)
3478
3486
  * of values.
3479
3487
  */
3480
- var nativeObjectToString$1 = objectProto$d.toString;
3488
+ var nativeObjectToString$1 = objectProto$c.toString;
3481
3489
 
3482
3490
  /** Built-in value references. */
3483
3491
  var symToStringTag$1 = Symbol$6 ? Symbol$6.toStringTag : undefined;
@@ -3490,7 +3498,7 @@ var symToStringTag$1 = Symbol$6 ? Symbol$6.toStringTag : undefined;
3490
3498
  * @returns {string} Returns the raw `toStringTag`.
3491
3499
  */
3492
3500
  function getRawTag$1(value) {
3493
- var isOwn = hasOwnProperty$a.call(value, symToStringTag$1),
3501
+ var isOwn = hasOwnProperty$9.call(value, symToStringTag$1),
3494
3502
  tag = value[symToStringTag$1];
3495
3503
 
3496
3504
  try {
@@ -3513,14 +3521,14 @@ var _getRawTag = getRawTag$1;
3513
3521
 
3514
3522
  /** Used for built-in method references. */
3515
3523
 
3516
- var objectProto$c = Object.prototype;
3524
+ var objectProto$b = Object.prototype;
3517
3525
 
3518
3526
  /**
3519
3527
  * Used to resolve the
3520
3528
  * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)
3521
3529
  * of values.
3522
3530
  */
3523
- var nativeObjectToString = objectProto$c.toString;
3531
+ var nativeObjectToString = objectProto$b.toString;
3524
3532
 
3525
3533
  /**
3526
3534
  * Converts `value` to a string using `Object.prototype.toString`.
@@ -3590,15 +3598,23 @@ var _baseGetTag = baseGetTag$5;
3590
3598
  * // => false
3591
3599
  */
3592
3600
 
3593
- function isObject$8(value) {
3594
- var type = typeof value;
3595
- return value != null && (type == 'object' || type == 'function');
3596
- }
3601
+ var isObject_1;
3602
+ var hasRequiredIsObject;
3597
3603
 
3598
- var isObject_1 = isObject$8;
3604
+ function requireIsObject () {
3605
+ if (hasRequiredIsObject) return isObject_1;
3606
+ hasRequiredIsObject = 1;
3607
+ function isObject(value) {
3608
+ var type = typeof value;
3609
+ return value != null && (type == 'object' || type == 'function');
3610
+ }
3611
+
3612
+ isObject_1 = isObject;
3613
+ return isObject_1;
3614
+ }
3599
3615
 
3600
3616
  var baseGetTag$4 = _baseGetTag,
3601
- isObject$7 = isObject_1;
3617
+ isObject$6 = requireIsObject();
3602
3618
 
3603
3619
  /** `Object#toString` result references. */
3604
3620
  var asyncTag = '[object AsyncFunction]',
@@ -3623,8 +3639,8 @@ var asyncTag = '[object AsyncFunction]',
3623
3639
  * _.isFunction(/abc/);
3624
3640
  * // => false
3625
3641
  */
3626
- function isFunction$3(value) {
3627
- if (!isObject$7(value)) {
3642
+ function isFunction$2(value) {
3643
+ if (!isObject$6(value)) {
3628
3644
  return false;
3629
3645
  }
3630
3646
  // The use of `Object#toString` avoids issues with the `typeof` operator
@@ -3633,12 +3649,12 @@ function isFunction$3(value) {
3633
3649
  return tag == funcTag$1 || tag == genTag$1 || tag == asyncTag || tag == proxyTag;
3634
3650
  }
3635
3651
 
3636
- var isFunction_1 = isFunction$3;
3652
+ var isFunction_1 = isFunction$2;
3637
3653
 
3638
- var root$a = _root;
3654
+ var root$9 = _root;
3639
3655
 
3640
3656
  /** Used to detect overreaching core-js shims. */
3641
- var coreJsData$1 = root$a['__core-js_shared__'];
3657
+ var coreJsData$1 = root$9['__core-js_shared__'];
3642
3658
 
3643
3659
  var _coreJsData = coreJsData$1;
3644
3660
 
@@ -3691,9 +3707,9 @@ function toSource$2(func) {
3691
3707
 
3692
3708
  var _toSource = toSource$2;
3693
3709
 
3694
- var isFunction$2 = isFunction_1,
3710
+ var isFunction$1 = isFunction_1,
3695
3711
  isMasked = _isMasked,
3696
- isObject$6 = isObject_1,
3712
+ isObject$5 = requireIsObject(),
3697
3713
  toSource$1 = _toSource;
3698
3714
 
3699
3715
  /**
@@ -3707,17 +3723,17 @@ var reIsHostCtor = /^\[object .+?Constructor\]$/;
3707
3723
 
3708
3724
  /** Used for built-in method references. */
3709
3725
  var funcProto$1 = Function.prototype,
3710
- objectProto$b = Object.prototype;
3726
+ objectProto$a = Object.prototype;
3711
3727
 
3712
3728
  /** Used to resolve the decompiled source of functions. */
3713
3729
  var funcToString$1 = funcProto$1.toString;
3714
3730
 
3715
3731
  /** Used to check objects for own properties. */
3716
- var hasOwnProperty$9 = objectProto$b.hasOwnProperty;
3732
+ var hasOwnProperty$8 = objectProto$a.hasOwnProperty;
3717
3733
 
3718
3734
  /** Used to detect if a method is native. */
3719
3735
  var reIsNative = RegExp('^' +
3720
- funcToString$1.call(hasOwnProperty$9).replace(reRegExpChar, '\\$&')
3736
+ funcToString$1.call(hasOwnProperty$8).replace(reRegExpChar, '\\$&')
3721
3737
  .replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, '$1.*?') + '$'
3722
3738
  );
3723
3739
 
@@ -3730,10 +3746,10 @@ var reIsNative = RegExp('^' +
3730
3746
  * else `false`.
3731
3747
  */
3732
3748
  function baseIsNative$1(value) {
3733
- if (!isObject$6(value) || isMasked(value)) {
3749
+ if (!isObject$5(value) || isMasked(value)) {
3734
3750
  return false;
3735
3751
  }
3736
- var pattern = isFunction$2(value) ? reIsNative : reIsHostCtor;
3752
+ var pattern = isFunction$1(value) ? reIsNative : reIsHostCtor;
3737
3753
  return pattern.test(toSource$1(value));
3738
3754
  }
3739
3755
 
@@ -3765,18 +3781,18 @@ var baseIsNative = _baseIsNative,
3765
3781
  * @param {string} key The key of the method to get.
3766
3782
  * @returns {*} Returns the function if it's native, else `undefined`.
3767
3783
  */
3768
- function getNative$6(object, key) {
3784
+ function getNative$5(object, key) {
3769
3785
  var value = getValue(object, key);
3770
3786
  return baseIsNative(value) ? value : undefined;
3771
3787
  }
3772
3788
 
3773
- var _getNative = getNative$6;
3789
+ var _getNative = getNative$5;
3774
3790
 
3775
- var getNative$5 = _getNative,
3776
- root$9 = _root;
3791
+ var getNative$4 = _getNative,
3792
+ root$8 = _root;
3777
3793
 
3778
3794
  /* Built-in method references that are verified to be native. */
3779
- var WeakMap$3 = getNative$5(root$9, 'WeakMap');
3795
+ var WeakMap$3 = getNative$4(root$8, 'WeakMap');
3780
3796
 
3781
3797
  var _WeakMap = WeakMap$3;
3782
3798
 
@@ -3787,7 +3803,7 @@ var metaMap$2 = WeakMap$2 && new WeakMap$2;
3787
3803
 
3788
3804
  var _metaMap = metaMap$2;
3789
3805
 
3790
- var identity$2 = identity_1,
3806
+ var identity$1 = requireIdentity(),
3791
3807
  metaMap$1 = _metaMap;
3792
3808
 
3793
3809
  /**
@@ -3798,46 +3814,54 @@ var identity$2 = identity_1,
3798
3814
  * @param {*} data The metadata.
3799
3815
  * @returns {Function} Returns `func`.
3800
3816
  */
3801
- var baseSetData$2 = !metaMap$1 ? identity$2 : function(func, data) {
3817
+ var baseSetData$2 = !metaMap$1 ? identity$1 : function(func, data) {
3802
3818
  metaMap$1.set(func, data);
3803
3819
  return func;
3804
3820
  };
3805
3821
 
3806
3822
  var _baseSetData = baseSetData$2;
3807
3823
 
3808
- var isObject$5 = isObject_1;
3824
+ var _baseCreate;
3825
+ var hasRequired_baseCreate;
3809
3826
 
3810
- /** Built-in value references. */
3811
- var objectCreate = Object.create;
3827
+ function require_baseCreate () {
3828
+ if (hasRequired_baseCreate) return _baseCreate;
3829
+ hasRequired_baseCreate = 1;
3830
+ var isObject = requireIsObject();
3812
3831
 
3813
- /**
3814
- * The base implementation of `_.create` without support for assigning
3815
- * properties to the created object.
3816
- *
3817
- * @private
3818
- * @param {Object} proto The object to inherit from.
3819
- * @returns {Object} Returns the new object.
3820
- */
3821
- var baseCreate$4 = (function() {
3822
- function object() {}
3823
- return function(proto) {
3824
- if (!isObject$5(proto)) {
3825
- return {};
3826
- }
3827
- if (objectCreate) {
3828
- return objectCreate(proto);
3829
- }
3830
- object.prototype = proto;
3831
- var result = new object;
3832
- object.prototype = undefined;
3833
- return result;
3834
- };
3835
- }());
3832
+ /** Built-in value references. */
3833
+ var objectCreate = Object.create;
3836
3834
 
3837
- var _baseCreate = baseCreate$4;
3835
+ /**
3836
+ * The base implementation of `_.create` without support for assigning
3837
+ * properties to the created object.
3838
+ *
3839
+ * @private
3840
+ * @param {Object} proto The object to inherit from.
3841
+ * @returns {Object} Returns the new object.
3842
+ */
3843
+ var baseCreate = (function() {
3844
+ function object() {}
3845
+ return function(proto) {
3846
+ if (!isObject(proto)) {
3847
+ return {};
3848
+ }
3849
+ if (objectCreate) {
3850
+ return objectCreate(proto);
3851
+ }
3852
+ object.prototype = proto;
3853
+ var result = new object;
3854
+ object.prototype = undefined;
3855
+ return result;
3856
+ };
3857
+ }());
3838
3858
 
3839
- var baseCreate$3 = _baseCreate,
3840
- isObject$4 = isObject_1;
3859
+ _baseCreate = baseCreate;
3860
+ return _baseCreate;
3861
+ }
3862
+
3863
+ var baseCreate$2 = require_baseCreate(),
3864
+ isObject$4 = requireIsObject();
3841
3865
 
3842
3866
  /**
3843
3867
  * Creates a function that produces an instance of `Ctor` regardless of
@@ -3863,7 +3887,7 @@ function createCtor$4(Ctor) {
3863
3887
  case 6: return new Ctor(args[0], args[1], args[2], args[3], args[4], args[5]);
3864
3888
  case 7: return new Ctor(args[0], args[1], args[2], args[3], args[4], args[5], args[6]);
3865
3889
  }
3866
- var thisBinding = baseCreate$3(Ctor.prototype),
3890
+ var thisBinding = baseCreate$2(Ctor.prototype),
3867
3891
  result = Ctor.apply(thisBinding, args);
3868
3892
 
3869
3893
  // Mimic the constructor's `return` behavior.
@@ -3875,7 +3899,7 @@ function createCtor$4(Ctor) {
3875
3899
  var _createCtor = createCtor$4;
3876
3900
 
3877
3901
  var createCtor$3 = _createCtor,
3878
- root$8 = _root;
3902
+ root$7 = _root;
3879
3903
 
3880
3904
  /** Used to compose bitmasks for function metadata. */
3881
3905
  var WRAP_BIND_FLAG$6 = 1;
@@ -3895,7 +3919,7 @@ function createBind$1(func, bitmask, thisArg) {
3895
3919
  Ctor = createCtor$3(func);
3896
3920
 
3897
3921
  function wrapper() {
3898
- var fn = (this && this !== root$8 && this instanceof wrapper) ? Ctor : func;
3922
+ var fn = (this && this !== root$7 && this instanceof wrapper) ? Ctor : func;
3899
3923
  return fn.apply(isBind ? thisArg : this, arguments);
3900
3924
  }
3901
3925
  return wrapper;
@@ -3914,7 +3938,7 @@ var _createBind = createBind$1;
3914
3938
  * @returns {*} Returns the result of `func`.
3915
3939
  */
3916
3940
 
3917
- function apply$3(func, thisArg, args) {
3941
+ function apply$2(func, thisArg, args) {
3918
3942
  switch (args.length) {
3919
3943
  case 0: return func.call(thisArg);
3920
3944
  case 1: return func.call(thisArg, args[0]);
@@ -3924,11 +3948,11 @@ function apply$3(func, thisArg, args) {
3924
3948
  return func.apply(thisArg, args);
3925
3949
  }
3926
3950
 
3927
- var _apply = apply$3;
3951
+ var _apply = apply$2;
3928
3952
 
3929
3953
  /* Built-in method references for those with the same name as other `lodash` methods. */
3930
3954
 
3931
- var nativeMax$3 = Math.max;
3955
+ var nativeMax$2 = Math.max;
3932
3956
 
3933
3957
  /**
3934
3958
  * Creates an array that is the composition of partially applied arguments,
@@ -3947,7 +3971,7 @@ function composeArgs$2(args, partials, holders, isCurried) {
3947
3971
  holdersLength = holders.length,
3948
3972
  leftIndex = -1,
3949
3973
  leftLength = partials.length,
3950
- rangeLength = nativeMax$3(argsLength - holdersLength, 0),
3974
+ rangeLength = nativeMax$2(argsLength - holdersLength, 0),
3951
3975
  result = Array(leftLength + rangeLength),
3952
3976
  isUncurried = !isCurried;
3953
3977
 
@@ -3969,7 +3993,7 @@ var _composeArgs = composeArgs$2;
3969
3993
 
3970
3994
  /* Built-in method references for those with the same name as other `lodash` methods. */
3971
3995
 
3972
- var nativeMax$2 = Math.max;
3996
+ var nativeMax$1 = Math.max;
3973
3997
 
3974
3998
  /**
3975
3999
  * This function is like `composeArgs` except that the arguments composition
@@ -3989,7 +4013,7 @@ function composeArgsRight$2(args, partials, holders, isCurried) {
3989
4013
  holdersLength = holders.length,
3990
4014
  rightIndex = -1,
3991
4015
  rightLength = partials.length,
3992
- rangeLength = nativeMax$2(argsLength - holdersLength, 0),
4016
+ rangeLength = nativeMax$1(argsLength - holdersLength, 0),
3993
4017
  result = Array(rangeLength + rightLength),
3994
4018
  isUncurried = !isCurried;
3995
4019
 
@@ -4045,7 +4069,7 @@ function baseLodash$3() {
4045
4069
 
4046
4070
  var _baseLodash = baseLodash$3;
4047
4071
 
4048
- var baseCreate$2 = _baseCreate,
4072
+ var baseCreate$1 = require_baseCreate(),
4049
4073
  baseLodash$2 = _baseLodash;
4050
4074
 
4051
4075
  /** Used as references for the maximum length and index of an array. */
@@ -4069,7 +4093,7 @@ function LazyWrapper$3(value) {
4069
4093
  }
4070
4094
 
4071
4095
  // Ensure `LazyWrapper` is an instance of `baseLodash`.
4072
- LazyWrapper$3.prototype = baseCreate$2(baseLodash$2.prototype);
4096
+ LazyWrapper$3.prototype = baseCreate$1(baseLodash$2.prototype);
4073
4097
  LazyWrapper$3.prototype.constructor = LazyWrapper$3;
4074
4098
 
4075
4099
  var _LazyWrapper = LazyWrapper$3;
@@ -4118,10 +4142,10 @@ var _realNames = realNames$1;
4118
4142
  var realNames = _realNames;
4119
4143
 
4120
4144
  /** Used for built-in method references. */
4121
- var objectProto$a = Object.prototype;
4145
+ var objectProto$9 = Object.prototype;
4122
4146
 
4123
4147
  /** Used to check objects for own properties. */
4124
- var hasOwnProperty$8 = objectProto$a.hasOwnProperty;
4148
+ var hasOwnProperty$7 = objectProto$9.hasOwnProperty;
4125
4149
 
4126
4150
  /**
4127
4151
  * Gets the name of `func`.
@@ -4133,7 +4157,7 @@ var hasOwnProperty$8 = objectProto$a.hasOwnProperty;
4133
4157
  function getFuncName$1(func) {
4134
4158
  var result = (func.name + ''),
4135
4159
  array = realNames[result],
4136
- length = hasOwnProperty$8.call(realNames, result) ? array.length : 0;
4160
+ length = hasOwnProperty$7.call(realNames, result) ? array.length : 0;
4137
4161
 
4138
4162
  while (length--) {
4139
4163
  var data = array[length],
@@ -4147,7 +4171,7 @@ function getFuncName$1(func) {
4147
4171
 
4148
4172
  var _getFuncName = getFuncName$1;
4149
4173
 
4150
- var baseCreate$1 = _baseCreate,
4174
+ var baseCreate = require_baseCreate(),
4151
4175
  baseLodash$1 = _baseLodash;
4152
4176
 
4153
4177
  /**
@@ -4165,7 +4189,7 @@ function LodashWrapper$2(value, chainAll) {
4165
4189
  this.__values__ = undefined;
4166
4190
  }
4167
4191
 
4168
- LodashWrapper$2.prototype = baseCreate$1(baseLodash$1.prototype);
4192
+ LodashWrapper$2.prototype = baseCreate(baseLodash$1.prototype);
4169
4193
  LodashWrapper$2.prototype.constructor = LodashWrapper$2;
4170
4194
 
4171
4195
  var _LodashWrapper = LodashWrapper$2;
@@ -4194,9 +4218,9 @@ var _LodashWrapper = LodashWrapper$2;
4194
4218
  * // => false
4195
4219
  */
4196
4220
 
4197
- var isArray$h = Array.isArray;
4221
+ var isArray$g = Array.isArray;
4198
4222
 
4199
- var isArray_1 = isArray$h;
4223
+ var isArray_1 = isArray$g;
4200
4224
 
4201
4225
  /**
4202
4226
  * Checks if `value` is object-like. A value is object-like if it's not `null`
@@ -4278,15 +4302,15 @@ var _wrapperClone = wrapperClone$1;
4278
4302
  var LazyWrapper$1 = _LazyWrapper,
4279
4303
  LodashWrapper = _LodashWrapper,
4280
4304
  baseLodash = _baseLodash,
4281
- isArray$g = isArray_1,
4305
+ isArray$f = isArray_1,
4282
4306
  isObjectLike$7 = isObjectLike_1,
4283
4307
  wrapperClone = _wrapperClone;
4284
4308
 
4285
4309
  /** Used for built-in method references. */
4286
- var objectProto$9 = Object.prototype;
4310
+ var objectProto$8 = Object.prototype;
4287
4311
 
4288
4312
  /** Used to check objects for own properties. */
4289
- var hasOwnProperty$7 = objectProto$9.hasOwnProperty;
4313
+ var hasOwnProperty$6 = objectProto$8.hasOwnProperty;
4290
4314
 
4291
4315
  /**
4292
4316
  * Creates a `lodash` object which wraps `value` to enable implicit method
@@ -4406,11 +4430,11 @@ var hasOwnProperty$7 = objectProto$9.hasOwnProperty;
4406
4430
  * // => true
4407
4431
  */
4408
4432
  function lodash$2(value) {
4409
- if (isObjectLike$7(value) && !isArray$g(value) && !(value instanceof LazyWrapper$1)) {
4433
+ if (isObjectLike$7(value) && !isArray$f(value) && !(value instanceof LazyWrapper$1)) {
4410
4434
  if (value instanceof LodashWrapper) {
4411
4435
  return value;
4412
4436
  }
4413
- if (hasOwnProperty$7.call(value, '__wrapped__')) {
4437
+ if (hasOwnProperty$6.call(value, '__wrapped__')) {
4414
4438
  return wrapperClone(value);
4415
4439
  }
4416
4440
  }
@@ -4454,45 +4478,53 @@ var _isLaziable = isLaziable$1;
4454
4478
 
4455
4479
  /** Used to detect hot functions by number of calls within a span of milliseconds. */
4456
4480
 
4457
- var HOT_COUNT = 800,
4458
- HOT_SPAN = 16;
4481
+ var _shortOut;
4482
+ var hasRequired_shortOut;
4459
4483
 
4460
- /* Built-in method references for those with the same name as other `lodash` methods. */
4461
- var nativeNow = Date.now;
4484
+ function require_shortOut () {
4485
+ if (hasRequired_shortOut) return _shortOut;
4486
+ hasRequired_shortOut = 1;
4487
+ var HOT_COUNT = 800,
4488
+ HOT_SPAN = 16;
4462
4489
 
4463
- /**
4464
- * Creates a function that'll short out and invoke `identity` instead
4465
- * of `func` when it's called `HOT_COUNT` or more times in `HOT_SPAN`
4466
- * milliseconds.
4467
- *
4468
- * @private
4469
- * @param {Function} func The function to restrict.
4470
- * @returns {Function} Returns the new shortable function.
4471
- */
4472
- function shortOut$2(func) {
4473
- var count = 0,
4474
- lastCalled = 0;
4490
+ /* Built-in method references for those with the same name as other `lodash` methods. */
4491
+ var nativeNow = Date.now;
4475
4492
 
4476
- return function() {
4477
- var stamp = nativeNow(),
4478
- remaining = HOT_SPAN - (stamp - lastCalled);
4493
+ /**
4494
+ * Creates a function that'll short out and invoke `identity` instead
4495
+ * of `func` when it's called `HOT_COUNT` or more times in `HOT_SPAN`
4496
+ * milliseconds.
4497
+ *
4498
+ * @private
4499
+ * @param {Function} func The function to restrict.
4500
+ * @returns {Function} Returns the new shortable function.
4501
+ */
4502
+ function shortOut(func) {
4503
+ var count = 0,
4504
+ lastCalled = 0;
4479
4505
 
4480
- lastCalled = stamp;
4481
- if (remaining > 0) {
4482
- if (++count >= HOT_COUNT) {
4483
- return arguments[0];
4484
- }
4485
- } else {
4486
- count = 0;
4487
- }
4488
- return func.apply(undefined, arguments);
4489
- };
4490
- }
4506
+ return function() {
4507
+ var stamp = nativeNow(),
4508
+ remaining = HOT_SPAN - (stamp - lastCalled);
4491
4509
 
4492
- var _shortOut = shortOut$2;
4510
+ lastCalled = stamp;
4511
+ if (remaining > 0) {
4512
+ if (++count >= HOT_COUNT) {
4513
+ return arguments[0];
4514
+ }
4515
+ } else {
4516
+ count = 0;
4517
+ }
4518
+ return func.apply(undefined, arguments);
4519
+ };
4520
+ }
4521
+
4522
+ _shortOut = shortOut;
4523
+ return _shortOut;
4524
+ }
4493
4525
 
4494
4526
  var baseSetData$1 = _baseSetData,
4495
- shortOut$1 = _shortOut;
4527
+ shortOut = require_shortOut();
4496
4528
 
4497
4529
  /**
4498
4530
  * Sets metadata for `func`.
@@ -4508,7 +4540,7 @@ var baseSetData$1 = _baseSetData,
4508
4540
  * @param {*} data The metadata.
4509
4541
  * @returns {Function} Returns `func`.
4510
4542
  */
4511
- var setData$2 = shortOut$1(baseSetData$1);
4543
+ var setData$2 = shortOut(baseSetData$1);
4512
4544
 
4513
4545
  var _setData = setData$2;
4514
4546
 
@@ -4576,63 +4608,95 @@ var _insertWrapDetails = insertWrapDetails$1;
4576
4608
  * // => true
4577
4609
  */
4578
4610
 
4579
- function constant$1(value) {
4580
- return function() {
4581
- return value;
4582
- };
4611
+ var constant_1;
4612
+ var hasRequiredConstant;
4613
+
4614
+ function requireConstant () {
4615
+ if (hasRequiredConstant) return constant_1;
4616
+ hasRequiredConstant = 1;
4617
+ function constant(value) {
4618
+ return function() {
4619
+ return value;
4620
+ };
4621
+ }
4622
+
4623
+ constant_1 = constant;
4624
+ return constant_1;
4583
4625
  }
4584
4626
 
4585
- var constant_1 = constant$1;
4627
+ var _defineProperty;
4628
+ var hasRequired_defineProperty;
4586
4629
 
4587
- var getNative$4 = _getNative;
4630
+ function require_defineProperty () {
4631
+ if (hasRequired_defineProperty) return _defineProperty;
4632
+ hasRequired_defineProperty = 1;
4633
+ var getNative = _getNative;
4588
4634
 
4589
- var defineProperty$2 = (function() {
4590
- try {
4591
- var func = getNative$4(Object, 'defineProperty');
4592
- func({}, '', {});
4593
- return func;
4594
- } catch (e) {}
4595
- }());
4635
+ var defineProperty = (function() {
4636
+ try {
4637
+ var func = getNative(Object, 'defineProperty');
4638
+ func({}, '', {});
4639
+ return func;
4640
+ } catch (e) {}
4641
+ }());
4596
4642
 
4597
- var _defineProperty = defineProperty$2;
4643
+ _defineProperty = defineProperty;
4644
+ return _defineProperty;
4645
+ }
4598
4646
 
4599
- var constant = constant_1,
4600
- defineProperty$1 = _defineProperty,
4601
- identity$1 = identity_1;
4647
+ var _baseSetToString;
4648
+ var hasRequired_baseSetToString;
4602
4649
 
4603
- /**
4604
- * The base implementation of `setToString` without support for hot loop shorting.
4605
- *
4606
- * @private
4607
- * @param {Function} func The function to modify.
4608
- * @param {Function} string The `toString` result.
4609
- * @returns {Function} Returns `func`.
4610
- */
4611
- var baseSetToString$1 = !defineProperty$1 ? identity$1 : function(func, string) {
4612
- return defineProperty$1(func, 'toString', {
4613
- 'configurable': true,
4614
- 'enumerable': false,
4615
- 'value': constant(string),
4616
- 'writable': true
4617
- });
4618
- };
4650
+ function require_baseSetToString () {
4651
+ if (hasRequired_baseSetToString) return _baseSetToString;
4652
+ hasRequired_baseSetToString = 1;
4653
+ var constant = requireConstant(),
4654
+ defineProperty = require_defineProperty(),
4655
+ identity = requireIdentity();
4619
4656
 
4620
- var _baseSetToString = baseSetToString$1;
4657
+ /**
4658
+ * The base implementation of `setToString` without support for hot loop shorting.
4659
+ *
4660
+ * @private
4661
+ * @param {Function} func The function to modify.
4662
+ * @param {Function} string The `toString` result.
4663
+ * @returns {Function} Returns `func`.
4664
+ */
4665
+ var baseSetToString = !defineProperty ? identity : function(func, string) {
4666
+ return defineProperty(func, 'toString', {
4667
+ 'configurable': true,
4668
+ 'enumerable': false,
4669
+ 'value': constant(string),
4670
+ 'writable': true
4671
+ });
4672
+ };
4621
4673
 
4622
- var baseSetToString = _baseSetToString,
4623
- shortOut = _shortOut;
4674
+ _baseSetToString = baseSetToString;
4675
+ return _baseSetToString;
4676
+ }
4624
4677
 
4625
- /**
4626
- * Sets the `toString` method of `func` to return `string`.
4627
- *
4628
- * @private
4629
- * @param {Function} func The function to modify.
4630
- * @param {Function} string The `toString` result.
4631
- * @returns {Function} Returns `func`.
4632
- */
4633
- var setToString$2 = shortOut(baseSetToString);
4678
+ var _setToString;
4679
+ var hasRequired_setToString;
4634
4680
 
4635
- var _setToString = setToString$2;
4681
+ function require_setToString () {
4682
+ if (hasRequired_setToString) return _setToString;
4683
+ hasRequired_setToString = 1;
4684
+ var baseSetToString = require_baseSetToString(),
4685
+ shortOut = require_shortOut();
4686
+
4687
+ /**
4688
+ * Sets the `toString` method of `func` to return `string`.
4689
+ *
4690
+ * @private
4691
+ * @param {Function} func The function to modify.
4692
+ * @param {Function} string The `toString` result.
4693
+ * @returns {Function} Returns `func`.
4694
+ */
4695
+ var setToString = shortOut(baseSetToString);
4696
+
4697
+ _setToString = setToString;
4698
+ return _setToString;
4699
+ }
4636
4700
 
4637
4701
  /**
4638
4702
  * A specialized version of `_.forEach` for arrays without support for
@@ -4811,7 +4875,7 @@ var _updateWrapDetails = updateWrapDetails$1;
4811
4875
 
4812
4876
  var getWrapDetails = _getWrapDetails,
4813
4877
  insertWrapDetails = _insertWrapDetails,
4814
- setToString$1 = _setToString,
4878
+ setToString$1 = require_setToString(),
4815
4879
  updateWrapDetails = _updateWrapDetails;
4816
4880
 
4817
4881
  /**
@@ -4939,7 +5003,7 @@ function require_isIndex () {
4939
5003
  }
4940
5004
 
4941
5005
  var copyArray$2 = _copyArray,
4942
- isIndex$2 = require_isIndex();
5006
+ isIndex$1 = require_isIndex();
4943
5007
 
4944
5008
  /* Built-in method references for those with the same name as other `lodash` methods. */
4945
5009
  var nativeMin$1 = Math.min;
@@ -4961,7 +5025,7 @@ function reorder$1(array, indexes) {
4961
5025
 
4962
5026
  while (length--) {
4963
5027
  var index = indexes[length];
4964
- array[length] = isIndex$2(index, arrLength) ? oldArray[index] : undefined;
5028
+ array[length] = isIndex$1(index, arrLength) ? oldArray[index] : undefined;
4965
5029
  }
4966
5030
  return array;
4967
5031
  }
@@ -5007,7 +5071,7 @@ var composeArgs$1 = _composeArgs,
5007
5071
  getHolder$1 = _getHolder,
5008
5072
  reorder = _reorder,
5009
5073
  replaceHolders$2 = _replaceHolders,
5010
- root$7 = _root;
5074
+ root$6 = _root;
5011
5075
 
5012
5076
  /** Used to compose bitmasks for function metadata. */
5013
5077
  var WRAP_BIND_FLAG$3 = 1,
@@ -5082,7 +5146,7 @@ function createHybrid$2(func, bitmask, thisArg, partials, holders, partialsRight
5082
5146
  if (isAry && ary < length) {
5083
5147
  args.length = ary;
5084
5148
  }
5085
- if (this && this !== root$7 && this instanceof wrapper) {
5149
+ if (this && this !== root$6 && this instanceof wrapper) {
5086
5150
  fn = Ctor || createCtor$2(fn);
5087
5151
  }
5088
5152
  return fn.apply(thisBinding, args);
@@ -5092,13 +5156,13 @@ function createHybrid$2(func, bitmask, thisArg, partials, holders, partialsRight
5092
5156
 
5093
5157
  var _createHybrid = createHybrid$2;
5094
5158
 
5095
- var apply$2 = _apply,
5159
+ var apply$1 = _apply,
5096
5160
  createCtor$1 = _createCtor,
5097
5161
  createHybrid$1 = _createHybrid,
5098
5162
  createRecurry = _createRecurry,
5099
5163
  getHolder = _getHolder,
5100
5164
  replaceHolders$1 = _replaceHolders,
5101
- root$6 = _root;
5165
+ root$5 = _root;
5102
5166
 
5103
5167
  /**
5104
5168
  * Creates a function that wraps `func` to enable currying.
@@ -5131,17 +5195,17 @@ function createCurry$1(func, bitmask, arity) {
5131
5195
  func, bitmask, createHybrid$1, wrapper.placeholder, undefined,
5132
5196
  args, holders, undefined, undefined, arity - length);
5133
5197
  }
5134
- var fn = (this && this !== root$6 && this instanceof wrapper) ? Ctor : func;
5135
- return apply$2(fn, this, args);
5198
+ var fn = (this && this !== root$5 && this instanceof wrapper) ? Ctor : func;
5199
+ return apply$1(fn, this, args);
5136
5200
  }
5137
5201
  return wrapper;
5138
5202
  }
5139
5203
 
5140
5204
  var _createCurry = createCurry$1;
5141
5205
 
5142
- var apply$1 = _apply,
5206
+ var apply = _apply,
5143
5207
  createCtor = _createCtor,
5144
- root$5 = _root;
5208
+ root$4 = _root;
5145
5209
 
5146
5210
  /** Used to compose bitmasks for function metadata. */
5147
5211
  var WRAP_BIND_FLAG$2 = 1;
@@ -5168,7 +5232,7 @@ function createPartial$1(func, bitmask, thisArg, partials) {
5168
5232
  leftIndex = -1,
5169
5233
  leftLength = partials.length,
5170
5234
  args = Array(leftLength + argsLength),
5171
- fn = (this && this !== root$5 && this instanceof wrapper) ? Ctor : func;
5235
+ fn = (this && this !== root$4 && this instanceof wrapper) ? Ctor : func;
5172
5236
 
5173
5237
  while (++leftIndex < leftLength) {
5174
5238
  args[leftIndex] = partials[leftIndex];
@@ -5176,7 +5240,7 @@ function createPartial$1(func, bitmask, thisArg, partials) {
5176
5240
  while (argsLength--) {
5177
5241
  args[leftIndex++] = arguments[++argsIndex];
5178
5242
  }
5179
- return apply$1(fn, isBind ? thisArg : this, args);
5243
+ return apply(fn, isBind ? thisArg : this, args);
5180
5244
  }
5181
5245
  return wrapper;
5182
5246
  }
@@ -5346,7 +5410,7 @@ function isSymbol$6(value) {
5346
5410
  var isSymbol_1 = isSymbol$6;
5347
5411
 
5348
5412
  var baseTrim = _baseTrim,
5349
- isObject$3 = isObject_1,
5413
+ isObject$3 = requireIsObject(),
5350
5414
  isSymbol$5 = isSymbol_1;
5351
5415
 
5352
5416
  /** Used as references for various `Number` constants. */
@@ -5513,7 +5577,7 @@ var WRAP_BIND_FLAG = 1,
5513
5577
  WRAP_PARTIAL_RIGHT_FLAG = 64;
5514
5578
 
5515
5579
  /* Built-in method references for those with the same name as other `lodash` methods. */
5516
- var nativeMax$1 = Math.max;
5580
+ var nativeMax = Math.max;
5517
5581
 
5518
5582
  /**
5519
5583
  * Creates a function that either curries or invokes `func` with optional
@@ -5550,7 +5614,7 @@ function createWrap$3(func, bitmask, thisArg, partials, holders, argPos, ary, ar
5550
5614
  bitmask &= ~(WRAP_PARTIAL_FLAG | WRAP_PARTIAL_RIGHT_FLAG);
5551
5615
  partials = holders = undefined;
5552
5616
  }
5553
- ary = ary === undefined ? ary : nativeMax$1(toInteger(ary), 0);
5617
+ ary = ary === undefined ? ary : nativeMax(toInteger(ary), 0);
5554
5618
  arity = arity === undefined ? arity : toInteger(arity);
5555
5619
  length -= holders ? holders.length : 0;
5556
5620
 
@@ -5577,7 +5641,7 @@ function createWrap$3(func, bitmask, thisArg, partials, holders, argPos, ary, ar
5577
5641
  holders = newData[4];
5578
5642
  arity = newData[9] = newData[9] === undefined
5579
5643
  ? (isBindKey ? 0 : func.length)
5580
- : nativeMax$1(newData[9] - length, 0);
5644
+ : nativeMax(newData[9] - length, 0);
5581
5645
 
5582
5646
  if (!arity && bitmask & (WRAP_CURRY_FLAG$1 | WRAP_CURRY_RIGHT_FLAG)) {
5583
5647
  bitmask &= ~(WRAP_CURRY_FLAG$1 | WRAP_CURRY_RIGHT_FLAG);
@@ -5627,31 +5691,39 @@ function ary(func, n, guard) {
5627
5691
 
5628
5692
  var ary_1 = ary;
5629
5693
 
5630
- var defineProperty = _defineProperty;
5694
+ var _baseAssignValue;
5695
+ var hasRequired_baseAssignValue;
5631
5696
 
5632
- /**
5633
- * The base implementation of `assignValue` and `assignMergeValue` without
5634
- * value checks.
5635
- *
5636
- * @private
5637
- * @param {Object} object The object to modify.
5638
- * @param {string} key The key of the property to assign.
5639
- * @param {*} value The value to assign.
5640
- */
5641
- function baseAssignValue$2(object, key, value) {
5642
- if (key == '__proto__' && defineProperty) {
5643
- defineProperty(object, key, {
5644
- 'configurable': true,
5645
- 'enumerable': true,
5646
- 'value': value,
5647
- 'writable': true
5648
- });
5649
- } else {
5650
- object[key] = value;
5651
- }
5652
- }
5697
+ function require_baseAssignValue () {
5698
+ if (hasRequired_baseAssignValue) return _baseAssignValue;
5699
+ hasRequired_baseAssignValue = 1;
5700
+ var defineProperty = require_defineProperty();
5701
+
5702
+ /**
5703
+ * The base implementation of `assignValue` and `assignMergeValue` without
5704
+ * value checks.
5705
+ *
5706
+ * @private
5707
+ * @param {Object} object The object to modify.
5708
+ * @param {string} key The key of the property to assign.
5709
+ * @param {*} value The value to assign.
5710
+ */
5711
+ function baseAssignValue(object, key, value) {
5712
+ if (key == '__proto__' && defineProperty) {
5713
+ defineProperty(object, key, {
5714
+ 'configurable': true,
5715
+ 'enumerable': true,
5716
+ 'value': value,
5717
+ 'writable': true
5718
+ });
5719
+ } else {
5720
+ object[key] = value;
5721
+ }
5722
+ }
5653
5723
 
5654
- var _baseAssignValue = baseAssignValue$2;
5724
+ _baseAssignValue = baseAssignValue;
5725
+ return _baseAssignValue;
5726
+ }
5655
5727
 
5656
5728
  /**
5657
5729
  * Performs a
@@ -5700,14 +5772,14 @@ function requireEq () {
5700
5772
  return eq_1;
5701
5773
  }
5702
5774
 
5703
- var baseAssignValue$1 = _baseAssignValue,
5775
+ var baseAssignValue$1 = require_baseAssignValue(),
5704
5776
  eq$1 = requireEq();
5705
5777
 
5706
5778
  /** Used for built-in method references. */
5707
- var objectProto$8 = Object.prototype;
5779
+ var objectProto$7 = Object.prototype;
5708
5780
 
5709
5781
  /** Used to check objects for own properties. */
5710
- var hasOwnProperty$6 = objectProto$8.hasOwnProperty;
5782
+ var hasOwnProperty$5 = objectProto$7.hasOwnProperty;
5711
5783
 
5712
5784
  /**
5713
5785
  * Assigns `value` to `key` of `object` if the existing value is not equivalent
@@ -5721,7 +5793,7 @@ var hasOwnProperty$6 = objectProto$8.hasOwnProperty;
5721
5793
  */
5722
5794
  function assignValue$2(object, key, value) {
5723
5795
  var objValue = object[key];
5724
- if (!(hasOwnProperty$6.call(object, key) && eq$1(objValue, value)) ||
5796
+ if (!(hasOwnProperty$5.call(object, key) && eq$1(objValue, value)) ||
5725
5797
  (value === undefined && !(key in object))) {
5726
5798
  baseAssignValue$1(object, key, value);
5727
5799
  }
@@ -5730,7 +5802,7 @@ function assignValue$2(object, key, value) {
5730
5802
  var _assignValue = assignValue$2;
5731
5803
 
5732
5804
  var assignValue$1 = _assignValue,
5733
- baseAssignValue = _baseAssignValue;
5805
+ baseAssignValue = require_baseAssignValue();
5734
5806
 
5735
5807
  /**
5736
5808
  * Copies properties of `source` to `object`.
@@ -5780,17 +5852,25 @@ var _copyObject = copyObject$4;
5780
5852
  * @returns {Array} Returns the array of results.
5781
5853
  */
5782
5854
 
5783
- function baseTimes$1(n, iteratee) {
5784
- var index = -1,
5785
- result = Array(n);
5855
+ var _baseTimes;
5856
+ var hasRequired_baseTimes;
5786
5857
 
5787
- while (++index < n) {
5788
- result[index] = iteratee(index);
5789
- }
5790
- return result;
5791
- }
5858
+ function require_baseTimes () {
5859
+ if (hasRequired_baseTimes) return _baseTimes;
5860
+ hasRequired_baseTimes = 1;
5861
+ function baseTimes(n, iteratee) {
5862
+ var index = -1,
5863
+ result = Array(n);
5864
+
5865
+ while (++index < n) {
5866
+ result[index] = iteratee(index);
5867
+ }
5868
+ return result;
5869
+ }
5792
5870
 
5793
- var _baseTimes = baseTimes$1;
5871
+ _baseTimes = baseTimes;
5872
+ return _baseTimes;
5873
+ }
5794
5874
 
5795
5875
  var _baseIsArguments;
5796
5876
  var hasRequired_baseIsArguments;
@@ -5865,7 +5945,7 @@ function requireIsArguments () {
5865
5945
  }
5866
5946
 
5867
5947
  var isBufferExports = {};
5868
- var isBuffer$5 = {
5948
+ var isBuffer$4 = {
5869
5949
  get exports(){ return isBufferExports; },
5870
5950
  set exports(v){ isBufferExports = v; },
5871
5951
  };
@@ -5884,90 +5964,113 @@ var isBuffer$5 = {
5884
5964
  * // => [false, false]
5885
5965
  */
5886
5966
 
5887
- function stubFalse() {
5888
- return false;
5967
+ var stubFalse_1;
5968
+ var hasRequiredStubFalse;
5969
+
5970
+ function requireStubFalse () {
5971
+ if (hasRequiredStubFalse) return stubFalse_1;
5972
+ hasRequiredStubFalse = 1;
5973
+ function stubFalse() {
5974
+ return false;
5975
+ }
5976
+
5977
+ stubFalse_1 = stubFalse;
5978
+ return stubFalse_1;
5889
5979
  }
5890
5980
 
5891
- var stubFalse_1 = stubFalse;
5981
+ var hasRequiredIsBuffer;
5892
5982
 
5893
- (function (module, exports) {
5894
- var root = _root,
5895
- stubFalse = stubFalse_1;
5983
+ function requireIsBuffer () {
5984
+ if (hasRequiredIsBuffer) return isBufferExports;
5985
+ hasRequiredIsBuffer = 1;
5986
+ (function (module, exports) {
5987
+ var root = _root,
5988
+ stubFalse = requireStubFalse();
5896
5989
 
5897
- /** Detect free variable `exports`. */
5898
- var freeExports = exports && !exports.nodeType && exports;
5990
+ /** Detect free variable `exports`. */
5991
+ var freeExports = exports && !exports.nodeType && exports;
5899
5992
 
5900
- /** Detect free variable `module`. */
5901
- var freeModule = freeExports && 'object' == 'object' && module && !module.nodeType && module;
5993
+ /** Detect free variable `module`. */
5994
+ var freeModule = freeExports && 'object' == 'object' && module && !module.nodeType && module;
5902
5995
 
5903
- /** Detect the popular CommonJS extension `module.exports`. */
5904
- var moduleExports = freeModule && freeModule.exports === freeExports;
5996
+ /** Detect the popular CommonJS extension `module.exports`. */
5997
+ var moduleExports = freeModule && freeModule.exports === freeExports;
5905
5998
 
5906
- /** Built-in value references. */
5907
- var Buffer = moduleExports ? root.Buffer : undefined;
5999
+ /** Built-in value references. */
6000
+ var Buffer = moduleExports ? root.Buffer : undefined;
5908
6001
 
5909
- /* Built-in method references for those with the same name as other `lodash` methods. */
5910
- var nativeIsBuffer = Buffer ? Buffer.isBuffer : undefined;
6002
+ /* Built-in method references for those with the same name as other `lodash` methods. */
6003
+ var nativeIsBuffer = Buffer ? Buffer.isBuffer : undefined;
6004
+
6005
+ /**
6006
+ * Checks if `value` is a buffer.
6007
+ *
6008
+ * @static
6009
+ * @memberOf _
6010
+ * @since 4.3.0
6011
+ * @category Lang
6012
+ * @param {*} value The value to check.
6013
+ * @returns {boolean} Returns `true` if `value` is a buffer, else `false`.
6014
+ * @example
6015
+ *
6016
+ * _.isBuffer(new Buffer(2));
6017
+ * // => true
6018
+ *
6019
+ * _.isBuffer(new Uint8Array(2));
6020
+ * // => false
6021
+ */
6022
+ var isBuffer = nativeIsBuffer || stubFalse;
6023
+
6024
+ module.exports = isBuffer;
6025
+ } (isBuffer$4, isBufferExports));
6026
+ return isBufferExports;
6027
+ }
6028
+
6029
+ /** Used as references for various `Number` constants. */
6030
+
6031
+ var isLength_1;
6032
+ var hasRequiredIsLength;
6033
+
6034
+ function requireIsLength () {
6035
+ if (hasRequiredIsLength) return isLength_1;
6036
+ hasRequiredIsLength = 1;
6037
+ var MAX_SAFE_INTEGER = 9007199254740991;
5911
6038
 
5912
6039
  /**
5913
- * Checks if `value` is a buffer.
6040
+ * Checks if `value` is a valid array-like length.
6041
+ *
6042
+ * **Note:** This method is loosely based on
6043
+ * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength).
5914
6044
  *
5915
6045
  * @static
5916
6046
  * @memberOf _
5917
- * @since 4.3.0
6047
+ * @since 4.0.0
5918
6048
  * @category Lang
5919
6049
  * @param {*} value The value to check.
5920
- * @returns {boolean} Returns `true` if `value` is a buffer, else `false`.
6050
+ * @returns {boolean} Returns `true` if `value` is a valid length, else `false`.
5921
6051
  * @example
5922
6052
  *
5923
- * _.isBuffer(new Buffer(2));
6053
+ * _.isLength(3);
5924
6054
  * // => true
5925
6055
  *
5926
- * _.isBuffer(new Uint8Array(2));
6056
+ * _.isLength(Number.MIN_VALUE);
6057
+ * // => false
6058
+ *
6059
+ * _.isLength(Infinity);
6060
+ * // => false
6061
+ *
6062
+ * _.isLength('3');
5927
6063
  * // => false
5928
6064
  */
5929
- var isBuffer = nativeIsBuffer || stubFalse;
5930
-
5931
- module.exports = isBuffer;
5932
- } (isBuffer$5, isBufferExports));
5933
-
5934
- /** Used as references for various `Number` constants. */
5935
-
5936
- var MAX_SAFE_INTEGER = 9007199254740991;
6065
+ function isLength(value) {
6066
+ return typeof value == 'number' &&
6067
+ value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER;
6068
+ }
5937
6069
 
5938
- /**
5939
- * Checks if `value` is a valid array-like length.
5940
- *
5941
- * **Note:** This method is loosely based on
5942
- * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength).
5943
- *
5944
- * @static
5945
- * @memberOf _
5946
- * @since 4.0.0
5947
- * @category Lang
5948
- * @param {*} value The value to check.
5949
- * @returns {boolean} Returns `true` if `value` is a valid length, else `false`.
5950
- * @example
5951
- *
5952
- * _.isLength(3);
5953
- * // => true
5954
- *
5955
- * _.isLength(Number.MIN_VALUE);
5956
- * // => false
5957
- *
5958
- * _.isLength(Infinity);
5959
- * // => false
5960
- *
5961
- * _.isLength('3');
5962
- * // => false
5963
- */
5964
- function isLength$2(value) {
5965
- return typeof value == 'number' &&
5966
- value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER;
6070
+ isLength_1 = isLength;
6071
+ return isLength_1;
5967
6072
  }
5968
6073
 
5969
- var isLength_1 = isLength$2;
5970
-
5971
6074
  var _baseIsTypedArray;
5972
6075
  var hasRequired_baseIsTypedArray;
5973
6076
 
@@ -5975,7 +6078,7 @@ function require_baseIsTypedArray () {
5975
6078
  if (hasRequired_baseIsTypedArray) return _baseIsTypedArray;
5976
6079
  hasRequired_baseIsTypedArray = 1;
5977
6080
  var baseGetTag = _baseGetTag,
5978
- isLength = isLength_1,
6081
+ isLength = requireIsLength(),
5979
6082
  isObjectLike = isObjectLike_1;
5980
6083
 
5981
6084
  /** `Object#toString` result references. */
@@ -6045,13 +6148,21 @@ function require_baseIsTypedArray () {
6045
6148
  * @returns {Function} Returns the new capped function.
6046
6149
  */
6047
6150
 
6048
- function baseUnary$2(func) {
6049
- return function(value) {
6050
- return func(value);
6051
- };
6052
- }
6151
+ var _baseUnary;
6152
+ var hasRequired_baseUnary;
6053
6153
 
6054
- var _baseUnary = baseUnary$2;
6154
+ function require_baseUnary () {
6155
+ if (hasRequired_baseUnary) return _baseUnary;
6156
+ hasRequired_baseUnary = 1;
6157
+ function baseUnary(func) {
6158
+ return function(value) {
6159
+ return func(value);
6160
+ };
6161
+ }
6162
+
6163
+ _baseUnary = baseUnary;
6164
+ return _baseUnary;
6165
+ }
6055
6166
 
6056
6167
  var _nodeUtilExports = {};
6057
6168
  var _nodeUtil = {
@@ -6059,38 +6170,45 @@ var _nodeUtil = {
6059
6170
  set exports(v){ _nodeUtilExports = v; },
6060
6171
  };
6061
6172
 
6062
- (function (module, exports) {
6063
- var freeGlobal = _freeGlobal;
6173
+ var hasRequired_nodeUtil;
6064
6174
 
6065
- /** Detect free variable `exports`. */
6066
- var freeExports = exports && !exports.nodeType && exports;
6175
+ function require_nodeUtil () {
6176
+ if (hasRequired_nodeUtil) return _nodeUtilExports;
6177
+ hasRequired_nodeUtil = 1;
6178
+ (function (module, exports) {
6179
+ var freeGlobal = _freeGlobal;
6067
6180
 
6068
- /** Detect free variable `module`. */
6069
- var freeModule = freeExports && 'object' == 'object' && module && !module.nodeType && module;
6181
+ /** Detect free variable `exports`. */
6182
+ var freeExports = exports && !exports.nodeType && exports;
6070
6183
 
6071
- /** Detect the popular CommonJS extension `module.exports`. */
6072
- var moduleExports = freeModule && freeModule.exports === freeExports;
6184
+ /** Detect free variable `module`. */
6185
+ var freeModule = freeExports && 'object' == 'object' && module && !module.nodeType && module;
6073
6186
 
6074
- /** Detect free variable `process` from Node.js. */
6075
- var freeProcess = moduleExports && freeGlobal.process;
6187
+ /** Detect the popular CommonJS extension `module.exports`. */
6188
+ var moduleExports = freeModule && freeModule.exports === freeExports;
6076
6189
 
6077
- /** Used to access faster Node.js helpers. */
6078
- var nodeUtil = (function() {
6079
- try {
6080
- // Use `util.types` for Node.js 10+.
6081
- var types = freeModule && freeModule.require && freeModule.require('util').types;
6190
+ /** Detect free variable `process` from Node.js. */
6191
+ var freeProcess = moduleExports && freeGlobal.process;
6082
6192
 
6083
- if (types) {
6084
- return types;
6085
- }
6193
+ /** Used to access faster Node.js helpers. */
6194
+ var nodeUtil = (function() {
6195
+ try {
6196
+ // Use `util.types` for Node.js 10+.
6197
+ var types = freeModule && freeModule.require && freeModule.require('util').types;
6086
6198
 
6087
- // Legacy `process.binding('util')` for Node.js < 10.
6088
- return freeProcess && freeProcess.binding && freeProcess.binding('util');
6089
- } catch (e) {}
6090
- }());
6199
+ if (types) {
6200
+ return types;
6201
+ }
6202
+
6203
+ // Legacy `process.binding('util')` for Node.js < 10.
6204
+ return freeProcess && freeProcess.binding && freeProcess.binding('util');
6205
+ } catch (e) {}
6206
+ }());
6091
6207
 
6092
- module.exports = nodeUtil;
6208
+ module.exports = nodeUtil;
6093
6209
  } (_nodeUtil, _nodeUtilExports));
6210
+ return _nodeUtilExports;
6211
+ }
6094
6212
 
6095
6213
  var isTypedArray_1;
6096
6214
  var hasRequiredIsTypedArray;
@@ -6099,8 +6217,8 @@ function requireIsTypedArray () {
6099
6217
  if (hasRequiredIsTypedArray) return isTypedArray_1;
6100
6218
  hasRequiredIsTypedArray = 1;
6101
6219
  var baseIsTypedArray = require_baseIsTypedArray(),
6102
- baseUnary = _baseUnary,
6103
- nodeUtil = _nodeUtilExports;
6220
+ baseUnary = require_baseUnary(),
6221
+ nodeUtil = require_nodeUtil();
6104
6222
 
6105
6223
  /* Node.js helper references. */
6106
6224
  var nodeIsTypedArray = nodeUtil && nodeUtil.isTypedArray;
@@ -6128,55 +6246,63 @@ function requireIsTypedArray () {
6128
6246
  return isTypedArray_1;
6129
6247
  }
6130
6248
 
6131
- var baseTimes = _baseTimes,
6132
- isArguments$2 = requireIsArguments(),
6133
- isArray$f = isArray_1,
6134
- isBuffer$4 = isBufferExports,
6135
- isIndex$1 = require_isIndex(),
6136
- isTypedArray$1 = requireIsTypedArray();
6249
+ var _arrayLikeKeys;
6250
+ var hasRequired_arrayLikeKeys;
6137
6251
 
6138
- /** Used for built-in method references. */
6139
- var objectProto$7 = Object.prototype;
6252
+ function require_arrayLikeKeys () {
6253
+ if (hasRequired_arrayLikeKeys) return _arrayLikeKeys;
6254
+ hasRequired_arrayLikeKeys = 1;
6255
+ var baseTimes = require_baseTimes(),
6256
+ isArguments = requireIsArguments(),
6257
+ isArray = isArray_1,
6258
+ isBuffer = requireIsBuffer(),
6259
+ isIndex = require_isIndex(),
6260
+ isTypedArray = requireIsTypedArray();
6140
6261
 
6141
- /** Used to check objects for own properties. */
6142
- var hasOwnProperty$5 = objectProto$7.hasOwnProperty;
6262
+ /** Used for built-in method references. */
6263
+ var objectProto = Object.prototype;
6143
6264
 
6144
- /**
6145
- * Creates an array of the enumerable property names of the array-like `value`.
6146
- *
6147
- * @private
6148
- * @param {*} value The value to query.
6149
- * @param {boolean} inherited Specify returning inherited property names.
6150
- * @returns {Array} Returns the array of property names.
6151
- */
6152
- function arrayLikeKeys$1(value, inherited) {
6153
- var isArr = isArray$f(value),
6154
- isArg = !isArr && isArguments$2(value),
6155
- isBuff = !isArr && !isArg && isBuffer$4(value),
6156
- isType = !isArr && !isArg && !isBuff && isTypedArray$1(value),
6157
- skipIndexes = isArr || isArg || isBuff || isType,
6158
- result = skipIndexes ? baseTimes(value.length, String) : [],
6159
- length = result.length;
6265
+ /** Used to check objects for own properties. */
6266
+ var hasOwnProperty = objectProto.hasOwnProperty;
6160
6267
 
6161
- for (var key in value) {
6162
- if ((inherited || hasOwnProperty$5.call(value, key)) &&
6163
- !(skipIndexes && (
6164
- // Safari 9 has enumerable `arguments.length` in strict mode.
6165
- key == 'length' ||
6166
- // Node.js 0.10 has enumerable non-index properties on buffers.
6167
- (isBuff && (key == 'offset' || key == 'parent')) ||
6168
- // PhantomJS 2 has enumerable non-index properties on typed arrays.
6169
- (isType && (key == 'buffer' || key == 'byteLength' || key == 'byteOffset')) ||
6170
- // Skip index properties.
6171
- isIndex$1(key, length)
6172
- ))) {
6173
- result.push(key);
6174
- }
6175
- }
6176
- return result;
6177
- }
6268
+ /**
6269
+ * Creates an array of the enumerable property names of the array-like `value`.
6270
+ *
6271
+ * @private
6272
+ * @param {*} value The value to query.
6273
+ * @param {boolean} inherited Specify returning inherited property names.
6274
+ * @returns {Array} Returns the array of property names.
6275
+ */
6276
+ function arrayLikeKeys(value, inherited) {
6277
+ var isArr = isArray(value),
6278
+ isArg = !isArr && isArguments(value),
6279
+ isBuff = !isArr && !isArg && isBuffer(value),
6280
+ isType = !isArr && !isArg && !isBuff && isTypedArray(value),
6281
+ skipIndexes = isArr || isArg || isBuff || isType,
6282
+ result = skipIndexes ? baseTimes(value.length, String) : [],
6283
+ length = result.length;
6284
+
6285
+ for (var key in value) {
6286
+ if ((inherited || hasOwnProperty.call(value, key)) &&
6287
+ !(skipIndexes && (
6288
+ // Safari 9 has enumerable `arguments.length` in strict mode.
6289
+ key == 'length' ||
6290
+ // Node.js 0.10 has enumerable non-index properties on buffers.
6291
+ (isBuff && (key == 'offset' || key == 'parent')) ||
6292
+ // PhantomJS 2 has enumerable non-index properties on typed arrays.
6293
+ (isType && (key == 'buffer' || key == 'byteLength' || key == 'byteOffset')) ||
6294
+ // Skip index properties.
6295
+ isIndex(key, length)
6296
+ ))) {
6297
+ result.push(key);
6298
+ }
6299
+ }
6300
+ return result;
6301
+ }
6178
6302
 
6179
- var _arrayLikeKeys = arrayLikeKeys$1;
6303
+ _arrayLikeKeys = arrayLikeKeys;
6304
+ return _arrayLikeKeys;
6305
+ }
6180
6306
 
6181
6307
  /** Used for built-in method references. */
6182
6308
 
@@ -6189,14 +6315,14 @@ var objectProto$6 = Object.prototype;
6189
6315
  * @param {*} value The value to check.
6190
6316
  * @returns {boolean} Returns `true` if `value` is a prototype, else `false`.
6191
6317
  */
6192
- function isPrototype$2(value) {
6318
+ function isPrototype$1(value) {
6193
6319
  var Ctor = value && value.constructor,
6194
6320
  proto = (typeof Ctor == 'function' && Ctor.prototype) || objectProto$6;
6195
6321
 
6196
6322
  return value === proto;
6197
6323
  }
6198
6324
 
6199
- var _isPrototype = isPrototype$2;
6325
+ var _isPrototype = isPrototype$1;
6200
6326
 
6201
6327
  /**
6202
6328
  * Creates a unary function that invokes `func` with its argument transformed.
@@ -6222,7 +6348,7 @@ var nativeKeys$1 = overArg$1(Object.keys, Object);
6222
6348
 
6223
6349
  var _nativeKeys = nativeKeys$1;
6224
6350
 
6225
- var isPrototype$1 = _isPrototype,
6351
+ var isPrototype = _isPrototype,
6226
6352
  nativeKeys = _nativeKeys;
6227
6353
 
6228
6354
  /** Used for built-in method references. */
@@ -6239,7 +6365,7 @@ var hasOwnProperty$4 = objectProto$5.hasOwnProperty;
6239
6365
  * @returns {Array} Returns the array of property names.
6240
6366
  */
6241
6367
  function baseKeys$1(object) {
6242
- if (!isPrototype$1(object)) {
6368
+ if (!isPrototype(object)) {
6243
6369
  return nativeKeys(object);
6244
6370
  }
6245
6371
  var result = [];
@@ -6253,43 +6379,51 @@ function baseKeys$1(object) {
6253
6379
 
6254
6380
  var _baseKeys = baseKeys$1;
6255
6381
 
6256
- var isFunction$1 = isFunction_1,
6257
- isLength$1 = isLength_1;
6382
+ var isArrayLike_1;
6383
+ var hasRequiredIsArrayLike;
6258
6384
 
6259
- /**
6260
- * Checks if `value` is array-like. A value is considered array-like if it's
6261
- * not a function and has a `value.length` that's an integer greater than or
6262
- * equal to `0` and less than or equal to `Number.MAX_SAFE_INTEGER`.
6263
- *
6264
- * @static
6265
- * @memberOf _
6266
- * @since 4.0.0
6267
- * @category Lang
6268
- * @param {*} value The value to check.
6269
- * @returns {boolean} Returns `true` if `value` is array-like, else `false`.
6270
- * @example
6271
- *
6272
- * _.isArrayLike([1, 2, 3]);
6273
- * // => true
6274
- *
6275
- * _.isArrayLike(document.body.children);
6276
- * // => true
6277
- *
6278
- * _.isArrayLike('abc');
6279
- * // => true
6280
- *
6281
- * _.isArrayLike(_.noop);
6282
- * // => false
6283
- */
6284
- function isArrayLike$1(value) {
6285
- return value != null && isLength$1(value.length) && !isFunction$1(value);
6286
- }
6385
+ function requireIsArrayLike () {
6386
+ if (hasRequiredIsArrayLike) return isArrayLike_1;
6387
+ hasRequiredIsArrayLike = 1;
6388
+ var isFunction = isFunction_1,
6389
+ isLength = requireIsLength();
6287
6390
 
6288
- var isArrayLike_1 = isArrayLike$1;
6391
+ /**
6392
+ * Checks if `value` is array-like. A value is considered array-like if it's
6393
+ * not a function and has a `value.length` that's an integer greater than or
6394
+ * equal to `0` and less than or equal to `Number.MAX_SAFE_INTEGER`.
6395
+ *
6396
+ * @static
6397
+ * @memberOf _
6398
+ * @since 4.0.0
6399
+ * @category Lang
6400
+ * @param {*} value The value to check.
6401
+ * @returns {boolean} Returns `true` if `value` is array-like, else `false`.
6402
+ * @example
6403
+ *
6404
+ * _.isArrayLike([1, 2, 3]);
6405
+ * // => true
6406
+ *
6407
+ * _.isArrayLike(document.body.children);
6408
+ * // => true
6409
+ *
6410
+ * _.isArrayLike('abc');
6411
+ * // => true
6412
+ *
6413
+ * _.isArrayLike(_.noop);
6414
+ * // => false
6415
+ */
6416
+ function isArrayLike(value) {
6417
+ return value != null && isLength(value.length) && !isFunction(value);
6418
+ }
6289
6419
 
6290
- var arrayLikeKeys = _arrayLikeKeys,
6420
+ isArrayLike_1 = isArrayLike;
6421
+ return isArrayLike_1;
6422
+ }
6423
+
6424
+ var arrayLikeKeys = require_arrayLikeKeys(),
6291
6425
  baseKeys = _baseKeys,
6292
- isArrayLike = isArrayLike_1;
6426
+ isArrayLike = requireIsArrayLike();
6293
6427
 
6294
6428
  /**
6295
6429
  * Creates an array of the own enumerable property names of `object`.
@@ -6670,10 +6804,10 @@ function require_stackHas () {
6670
6804
  }
6671
6805
 
6672
6806
  var getNative$3 = _getNative,
6673
- root$4 = _root;
6807
+ root$3 = _root;
6674
6808
 
6675
6809
  /* Built-in method references that are verified to be native. */
6676
- var Map$2 = getNative$3(root$4, 'Map');
6810
+ var Map$2 = getNative$3(root$3, 'Map');
6677
6811
 
6678
6812
  var _Map = Map$2;
6679
6813
 
@@ -7233,7 +7367,7 @@ var hasRequired_baseKeysIn;
7233
7367
  function require_baseKeysIn () {
7234
7368
  if (hasRequired_baseKeysIn) return _baseKeysIn;
7235
7369
  hasRequired_baseKeysIn = 1;
7236
- var isObject = isObject_1,
7370
+ var isObject = requireIsObject(),
7237
7371
  isPrototype = _isPrototype,
7238
7372
  nativeKeysIn = require_nativeKeysIn();
7239
7373
 
@@ -7275,9 +7409,9 @@ var hasRequiredKeysIn;
7275
7409
  function requireKeysIn () {
7276
7410
  if (hasRequiredKeysIn) return keysIn_1;
7277
7411
  hasRequiredKeysIn = 1;
7278
- var arrayLikeKeys = _arrayLikeKeys,
7412
+ var arrayLikeKeys = require_arrayLikeKeys(),
7279
7413
  baseKeysIn = require_baseKeysIn(),
7280
- isArrayLike = isArrayLike_1;
7414
+ isArrayLike = requireIsArrayLike();
7281
7415
 
7282
7416
  /**
7283
7417
  * Creates an array of the own and inherited enumerable property names of `object`.
@@ -7334,43 +7468,50 @@ var _cloneBuffer = {
7334
7468
  set exports(v){ _cloneBufferExports = v; },
7335
7469
  };
7336
7470
 
7337
- (function (module, exports) {
7338
- var root = _root;
7339
-
7340
- /** Detect free variable `exports`. */
7341
- var freeExports = exports && !exports.nodeType && exports;
7342
-
7343
- /** Detect free variable `module`. */
7344
- var freeModule = freeExports && 'object' == 'object' && module && !module.nodeType && module;
7345
-
7346
- /** Detect the popular CommonJS extension `module.exports`. */
7347
- var moduleExports = freeModule && freeModule.exports === freeExports;
7348
-
7349
- /** Built-in value references. */
7350
- var Buffer = moduleExports ? root.Buffer : undefined,
7351
- allocUnsafe = Buffer ? Buffer.allocUnsafe : undefined;
7352
-
7353
- /**
7354
- * Creates a clone of `buffer`.
7355
- *
7356
- * @private
7357
- * @param {Buffer} buffer The buffer to clone.
7358
- * @param {boolean} [isDeep] Specify a deep clone.
7359
- * @returns {Buffer} Returns the cloned buffer.
7360
- */
7361
- function cloneBuffer(buffer, isDeep) {
7362
- if (isDeep) {
7363
- return buffer.slice();
7364
- }
7365
- var length = buffer.length,
7366
- result = allocUnsafe ? allocUnsafe(length) : new buffer.constructor(length);
7367
-
7368
- buffer.copy(result);
7369
- return result;
7370
- }
7471
+ var hasRequired_cloneBuffer;
7472
+
7473
+ function require_cloneBuffer () {
7474
+ if (hasRequired_cloneBuffer) return _cloneBufferExports;
7475
+ hasRequired_cloneBuffer = 1;
7476
+ (function (module, exports) {
7477
+ var root = _root;
7478
+
7479
+ /** Detect free variable `exports`. */
7480
+ var freeExports = exports && !exports.nodeType && exports;
7481
+
7482
+ /** Detect free variable `module`. */
7483
+ var freeModule = freeExports && 'object' == 'object' && module && !module.nodeType && module;
7484
+
7485
+ /** Detect the popular CommonJS extension `module.exports`. */
7486
+ var moduleExports = freeModule && freeModule.exports === freeExports;
7487
+
7488
+ /** Built-in value references. */
7489
+ var Buffer = moduleExports ? root.Buffer : undefined,
7490
+ allocUnsafe = Buffer ? Buffer.allocUnsafe : undefined;
7491
+
7492
+ /**
7493
+ * Creates a clone of `buffer`.
7494
+ *
7495
+ * @private
7496
+ * @param {Buffer} buffer The buffer to clone.
7497
+ * @param {boolean} [isDeep] Specify a deep clone.
7498
+ * @returns {Buffer} Returns the cloned buffer.
7499
+ */
7500
+ function cloneBuffer(buffer, isDeep) {
7501
+ if (isDeep) {
7502
+ return buffer.slice();
7503
+ }
7504
+ var length = buffer.length,
7505
+ result = allocUnsafe ? allocUnsafe(length) : new buffer.constructor(length);
7506
+
7507
+ buffer.copy(result);
7508
+ return result;
7509
+ }
7371
7510
 
7372
- module.exports = cloneBuffer;
7511
+ module.exports = cloneBuffer;
7373
7512
  } (_cloneBuffer, _cloneBufferExports));
7513
+ return _cloneBufferExports;
7514
+ }
7374
7515
 
7375
7516
  /**
7376
7517
  * A specialized version of `_.filter` for arrays without support for
@@ -7497,12 +7638,12 @@ var _arrayPush = arrayPush$3;
7497
7638
  var overArg = _overArg;
7498
7639
 
7499
7640
  /** Built-in value references. */
7500
- var getPrototype$3 = overArg(Object.getPrototypeOf, Object);
7641
+ var getPrototype$2 = overArg(Object.getPrototypeOf, Object);
7501
7642
 
7502
- var _getPrototype = getPrototype$3;
7643
+ var _getPrototype = getPrototype$2;
7503
7644
 
7504
7645
  var arrayPush$2 = _arrayPush,
7505
- getPrototype$2 = _getPrototype,
7646
+ getPrototype$1 = _getPrototype,
7506
7647
  getSymbols$1 = _getSymbols,
7507
7648
  stubArray = stubArray_1;
7508
7649
 
@@ -7520,7 +7661,7 @@ var getSymbolsIn$2 = !nativeGetSymbols ? stubArray : function(object) {
7520
7661
  var result = [];
7521
7662
  while (object) {
7522
7663
  arrayPush$2(result, getSymbols$1(object));
7523
- object = getPrototype$2(object);
7664
+ object = getPrototype$1(object);
7524
7665
  }
7525
7666
  return result;
7526
7667
  };
@@ -7601,26 +7742,26 @@ function getAllKeysIn$1(object) {
7601
7742
  var _getAllKeysIn = getAllKeysIn$1;
7602
7743
 
7603
7744
  var getNative$2 = _getNative,
7604
- root$3 = _root;
7745
+ root$2 = _root;
7605
7746
 
7606
7747
  /* Built-in method references that are verified to be native. */
7607
- var DataView$2 = getNative$2(root$3, 'DataView');
7748
+ var DataView$2 = getNative$2(root$2, 'DataView');
7608
7749
 
7609
7750
  var _DataView = DataView$2;
7610
7751
 
7611
7752
  var getNative$1 = _getNative,
7612
- root$2 = _root;
7753
+ root$1 = _root;
7613
7754
 
7614
7755
  /* Built-in method references that are verified to be native. */
7615
- var Promise$2 = getNative$1(root$2, 'Promise');
7756
+ var Promise$2 = getNative$1(root$1, 'Promise');
7616
7757
 
7617
7758
  var _Promise = Promise$2;
7618
7759
 
7619
7760
  var getNative = _getNative,
7620
- root$1 = _root;
7761
+ root = _root;
7621
7762
 
7622
7763
  /* Built-in method references that are verified to be native. */
7623
- var Set$2 = getNative(root$1, 'Set');
7764
+ var Set$2 = getNative(root, 'Set');
7624
7765
 
7625
7766
  var _Set = Set$2;
7626
7767
 
@@ -7711,31 +7852,47 @@ function initCloneArray$1(array) {
7711
7852
 
7712
7853
  var _initCloneArray = initCloneArray$1;
7713
7854
 
7714
- var root = _root;
7715
-
7716
- /** Built-in value references. */
7717
- var Uint8Array$3 = root.Uint8Array;
7855
+ var _Uint8Array;
7856
+ var hasRequired_Uint8Array;
7718
7857
 
7719
- var _Uint8Array = Uint8Array$3;
7858
+ function require_Uint8Array () {
7859
+ if (hasRequired_Uint8Array) return _Uint8Array;
7860
+ hasRequired_Uint8Array = 1;
7861
+ var root = _root;
7720
7862
 
7721
- var Uint8Array$2 = _Uint8Array;
7863
+ /** Built-in value references. */
7864
+ var Uint8Array = root.Uint8Array;
7722
7865
 
7723
- /**
7724
- * Creates a clone of `arrayBuffer`.
7725
- *
7726
- * @private
7727
- * @param {ArrayBuffer} arrayBuffer The array buffer to clone.
7728
- * @returns {ArrayBuffer} Returns the cloned array buffer.
7729
- */
7730
- function cloneArrayBuffer$2(arrayBuffer) {
7731
- var result = new arrayBuffer.constructor(arrayBuffer.byteLength);
7732
- new Uint8Array$2(result).set(new Uint8Array$2(arrayBuffer));
7733
- return result;
7866
+ _Uint8Array = Uint8Array;
7867
+ return _Uint8Array;
7734
7868
  }
7735
7869
 
7736
- var _cloneArrayBuffer = cloneArrayBuffer$2;
7870
+ var _cloneArrayBuffer;
7871
+ var hasRequired_cloneArrayBuffer;
7872
+
7873
+ function require_cloneArrayBuffer () {
7874
+ if (hasRequired_cloneArrayBuffer) return _cloneArrayBuffer;
7875
+ hasRequired_cloneArrayBuffer = 1;
7876
+ var Uint8Array = require_Uint8Array();
7877
+
7878
+ /**
7879
+ * Creates a clone of `arrayBuffer`.
7880
+ *
7881
+ * @private
7882
+ * @param {ArrayBuffer} arrayBuffer The array buffer to clone.
7883
+ * @returns {ArrayBuffer} Returns the cloned array buffer.
7884
+ */
7885
+ function cloneArrayBuffer(arrayBuffer) {
7886
+ var result = new arrayBuffer.constructor(arrayBuffer.byteLength);
7887
+ new Uint8Array(result).set(new Uint8Array(arrayBuffer));
7888
+ return result;
7889
+ }
7890
+
7891
+ _cloneArrayBuffer = cloneArrayBuffer;
7892
+ return _cloneArrayBuffer;
7893
+ }
7737
7894
 
7738
- var cloneArrayBuffer$1 = _cloneArrayBuffer;
7895
+ var cloneArrayBuffer$1 = require_cloneArrayBuffer();
7739
7896
 
7740
7897
  /**
7741
7898
  * Creates a clone of `dataView`.
@@ -7796,7 +7953,7 @@ var hasRequired_cloneTypedArray;
7796
7953
  function require_cloneTypedArray () {
7797
7954
  if (hasRequired_cloneTypedArray) return _cloneTypedArray;
7798
7955
  hasRequired_cloneTypedArray = 1;
7799
- var cloneArrayBuffer = _cloneArrayBuffer;
7956
+ var cloneArrayBuffer = require_cloneArrayBuffer();
7800
7957
 
7801
7958
  /**
7802
7959
  * Creates a clone of `typedArray`.
@@ -7815,7 +7972,7 @@ function require_cloneTypedArray () {
7815
7972
  return _cloneTypedArray;
7816
7973
  }
7817
7974
 
7818
- var cloneArrayBuffer = _cloneArrayBuffer,
7975
+ var cloneArrayBuffer = require_cloneArrayBuffer(),
7819
7976
  cloneDataView = _cloneDataView,
7820
7977
  cloneRegExp = _cloneRegExp,
7821
7978
  cloneSymbol = _cloneSymbol,
@@ -7893,24 +8050,32 @@ function initCloneByTag$1(object, tag, isDeep) {
7893
8050
 
7894
8051
  var _initCloneByTag = initCloneByTag$1;
7895
8052
 
7896
- var baseCreate = _baseCreate,
7897
- getPrototype$1 = _getPrototype,
7898
- isPrototype = _isPrototype;
8053
+ var _initCloneObject;
8054
+ var hasRequired_initCloneObject;
7899
8055
 
7900
- /**
7901
- * Initializes an object clone.
7902
- *
7903
- * @private
7904
- * @param {Object} object The object to clone.
7905
- * @returns {Object} Returns the initialized clone.
7906
- */
7907
- function initCloneObject$1(object) {
7908
- return (typeof object.constructor == 'function' && !isPrototype(object))
7909
- ? baseCreate(getPrototype$1(object))
7910
- : {};
7911
- }
8056
+ function require_initCloneObject () {
8057
+ if (hasRequired_initCloneObject) return _initCloneObject;
8058
+ hasRequired_initCloneObject = 1;
8059
+ var baseCreate = require_baseCreate(),
8060
+ getPrototype = _getPrototype,
8061
+ isPrototype = _isPrototype;
7912
8062
 
7913
- var _initCloneObject = initCloneObject$1;
8063
+ /**
8064
+ * Initializes an object clone.
8065
+ *
8066
+ * @private
8067
+ * @param {Object} object The object to clone.
8068
+ * @returns {Object} Returns the initialized clone.
8069
+ */
8070
+ function initCloneObject(object) {
8071
+ return (typeof object.constructor == 'function' && !isPrototype(object))
8072
+ ? baseCreate(getPrototype(object))
8073
+ : {};
8074
+ }
8075
+
8076
+ _initCloneObject = initCloneObject;
8077
+ return _initCloneObject;
8078
+ }
7914
8079
 
7915
8080
  var getTag$4 = _getTag,
7916
8081
  isObjectLike$5 = isObjectLike_1;
@@ -7932,8 +8097,8 @@ function baseIsMap$1(value) {
7932
8097
  var _baseIsMap = baseIsMap$1;
7933
8098
 
7934
8099
  var baseIsMap = _baseIsMap,
7935
- baseUnary$1 = _baseUnary,
7936
- nodeUtil$1 = _nodeUtilExports;
8100
+ baseUnary$1 = require_baseUnary(),
8101
+ nodeUtil$1 = require_nodeUtil();
7937
8102
 
7938
8103
  /* Node.js helper references. */
7939
8104
  var nodeIsMap = nodeUtil$1 && nodeUtil$1.isMap;
@@ -7979,8 +8144,8 @@ function baseIsSet$1(value) {
7979
8144
  var _baseIsSet = baseIsSet$1;
7980
8145
 
7981
8146
  var baseIsSet = _baseIsSet,
7982
- baseUnary = _baseUnary,
7983
- nodeUtil = _nodeUtilExports;
8147
+ baseUnary = require_baseUnary(),
8148
+ nodeUtil = require_nodeUtil();
7984
8149
 
7985
8150
  /* Node.js helper references. */
7986
8151
  var nodeIsSet = nodeUtil && nodeUtil.isSet;
@@ -8011,7 +8176,7 @@ var Stack$2 = require_Stack(),
8011
8176
  assignValue = _assignValue,
8012
8177
  baseAssign = _baseAssign,
8013
8178
  baseAssignIn = _baseAssignIn,
8014
- cloneBuffer = _cloneBufferExports,
8179
+ cloneBuffer = require_cloneBuffer(),
8015
8180
  copyArray$1 = _copyArray,
8016
8181
  copySymbols = _copySymbols,
8017
8182
  copySymbolsIn = _copySymbolsIn,
@@ -8020,11 +8185,11 @@ var Stack$2 = require_Stack(),
8020
8185
  getTag$2 = _getTag,
8021
8186
  initCloneArray = _initCloneArray,
8022
8187
  initCloneByTag = _initCloneByTag,
8023
- initCloneObject = _initCloneObject,
8188
+ initCloneObject = require_initCloneObject(),
8024
8189
  isArray$d = isArray_1,
8025
- isBuffer$3 = isBufferExports,
8190
+ isBuffer$3 = requireIsBuffer(),
8026
8191
  isMap$1 = isMap_1,
8027
- isObject$2 = isObject_1,
8192
+ isObject$2 = requireIsObject(),
8028
8193
  isSet$1 = isSet_1,
8029
8194
  keys$1 = keys_1,
8030
8195
  keysIn = requireKeysIn();
@@ -8628,7 +8793,7 @@ function setToArray$1(set) {
8628
8793
  var _setToArray = setToArray$1;
8629
8794
 
8630
8795
  var Symbol$3 = _Symbol,
8631
- Uint8Array$1 = _Uint8Array,
8796
+ Uint8Array$1 = require_Uint8Array(),
8632
8797
  eq = requireEq(),
8633
8798
  equalArrays$1 = _equalArrays,
8634
8799
  mapToArray = _mapToArray,
@@ -8837,7 +9002,7 @@ var Stack$1 = require_Stack(),
8837
9002
  equalObjects = _equalObjects,
8838
9003
  getTag = _getTag,
8839
9004
  isArray$c = isArray_1,
8840
- isBuffer$2 = isBufferExports,
9005
+ isBuffer$2 = requireIsBuffer(),
8841
9006
  isTypedArray = requireIsTypedArray();
8842
9007
 
8843
9008
  /** Used to compose bitmasks for value comparisons. */
@@ -9007,7 +9172,7 @@ function baseIsMatch$1(object, source, matchData, customizer) {
9007
9172
 
9008
9173
  var _baseIsMatch = baseIsMatch$1;
9009
9174
 
9010
- var isObject$1 = isObject_1;
9175
+ var isObject$1 = requireIsObject();
9011
9176
 
9012
9177
  /**
9013
9178
  * Checks if `value` is suitable for strict equality comparisons, i.e. `===`.
@@ -9464,7 +9629,7 @@ var castPath = _castPath,
9464
9629
  isArguments$1 = requireIsArguments(),
9465
9630
  isArray$8 = isArray_1,
9466
9631
  isIndex = require_isIndex(),
9467
- isLength = isLength_1,
9632
+ isLength = requireIsLength(),
9468
9633
  toKey$3 = _toKey;
9469
9634
 
9470
9635
  /**
@@ -9637,7 +9802,7 @@ var property_1 = property$1;
9637
9802
 
9638
9803
  var baseMatches = _baseMatches,
9639
9804
  baseMatchesProperty = _baseMatchesProperty,
9640
- identity = identity_1,
9805
+ identity = requireIdentity(),
9641
9806
  isArray$7 = isArray_1,
9642
9807
  property = property_1;
9643
9808
 
@@ -9804,46 +9969,54 @@ function flatten$1(array) {
9804
9969
 
9805
9970
  var flatten_1 = flatten$1;
9806
9971
 
9807
- var apply = _apply;
9972
+ var _overRest;
9973
+ var hasRequired_overRest;
9808
9974
 
9809
- /* Built-in method references for those with the same name as other `lodash` methods. */
9810
- var nativeMax = Math.max;
9975
+ function require_overRest () {
9976
+ if (hasRequired_overRest) return _overRest;
9977
+ hasRequired_overRest = 1;
9978
+ var apply = _apply;
9811
9979
 
9812
- /**
9813
- * A specialized version of `baseRest` which transforms the rest array.
9814
- *
9815
- * @private
9816
- * @param {Function} func The function to apply a rest parameter to.
9817
- * @param {number} [start=func.length-1] The start position of the rest parameter.
9818
- * @param {Function} transform The rest array transform.
9819
- * @returns {Function} Returns the new function.
9820
- */
9821
- function overRest$1(func, start, transform) {
9822
- start = nativeMax(start === undefined ? (func.length - 1) : start, 0);
9823
- return function() {
9824
- var args = arguments,
9825
- index = -1,
9826
- length = nativeMax(args.length - start, 0),
9827
- array = Array(length);
9980
+ /* Built-in method references for those with the same name as other `lodash` methods. */
9981
+ var nativeMax = Math.max;
9828
9982
 
9829
- while (++index < length) {
9830
- array[index] = args[start + index];
9831
- }
9832
- index = -1;
9833
- var otherArgs = Array(start + 1);
9834
- while (++index < start) {
9835
- otherArgs[index] = args[index];
9836
- }
9837
- otherArgs[start] = transform(array);
9838
- return apply(func, this, otherArgs);
9839
- };
9840
- }
9983
+ /**
9984
+ * A specialized version of `baseRest` which transforms the rest array.
9985
+ *
9986
+ * @private
9987
+ * @param {Function} func The function to apply a rest parameter to.
9988
+ * @param {number} [start=func.length-1] The start position of the rest parameter.
9989
+ * @param {Function} transform The rest array transform.
9990
+ * @returns {Function} Returns the new function.
9991
+ */
9992
+ function overRest(func, start, transform) {
9993
+ start = nativeMax(start === undefined ? (func.length - 1) : start, 0);
9994
+ return function() {
9995
+ var args = arguments,
9996
+ index = -1,
9997
+ length = nativeMax(args.length - start, 0),
9998
+ array = Array(length);
9999
+
10000
+ while (++index < length) {
10001
+ array[index] = args[start + index];
10002
+ }
10003
+ index = -1;
10004
+ var otherArgs = Array(start + 1);
10005
+ while (++index < start) {
10006
+ otherArgs[index] = args[index];
10007
+ }
10008
+ otherArgs[start] = transform(array);
10009
+ return apply(func, this, otherArgs);
10010
+ };
10011
+ }
9841
10012
 
9842
- var _overRest = overRest$1;
10013
+ _overRest = overRest;
10014
+ return _overRest;
10015
+ }
9843
10016
 
9844
10017
  var flatten = flatten_1,
9845
- overRest = _overRest,
9846
- setToString = _setToString;
10018
+ overRest = require_overRest(),
10019
+ setToString = require_setToString();
9847
10020
 
9848
10021
  /**
9849
10022
  * A specialized version of `baseRest` which flattens the rest array.
@@ -9968,7 +10141,7 @@ var hasRequired_assignMergeValue;
9968
10141
  function require_assignMergeValue () {
9969
10142
  if (hasRequired_assignMergeValue) return _assignMergeValue;
9970
10143
  hasRequired_assignMergeValue = 1;
9971
- var baseAssignValue = _baseAssignValue,
10144
+ var baseAssignValue = require_baseAssignValue(),
9972
10145
  eq = requireEq();
9973
10146
 
9974
10147
  /**
@@ -10057,7 +10230,7 @@ var hasRequiredIsArrayLikeObject;
10057
10230
  function requireIsArrayLikeObject () {
10058
10231
  if (hasRequiredIsArrayLikeObject) return isArrayLikeObject_1;
10059
10232
  hasRequiredIsArrayLikeObject = 1;
10060
- var isArrayLike = isArrayLike_1,
10233
+ var isArrayLike = requireIsArrayLike(),
10061
10234
  isObjectLike = isObjectLike_1;
10062
10235
 
10063
10236
  /**
@@ -10172,16 +10345,16 @@ function require_baseMergeDeep () {
10172
10345
  if (hasRequired_baseMergeDeep) return _baseMergeDeep;
10173
10346
  hasRequired_baseMergeDeep = 1;
10174
10347
  var assignMergeValue = require_assignMergeValue(),
10175
- cloneBuffer = _cloneBufferExports,
10348
+ cloneBuffer = require_cloneBuffer(),
10176
10349
  cloneTypedArray = require_cloneTypedArray(),
10177
10350
  copyArray = _copyArray,
10178
- initCloneObject = _initCloneObject,
10351
+ initCloneObject = require_initCloneObject(),
10179
10352
  isArguments = requireIsArguments(),
10180
10353
  isArray = isArray_1,
10181
10354
  isArrayLikeObject = requireIsArrayLikeObject(),
10182
- isBuffer = isBufferExports,
10355
+ isBuffer = requireIsBuffer(),
10183
10356
  isFunction = isFunction_1,
10184
- isObject = isObject_1,
10357
+ isObject = requireIsObject(),
10185
10358
  isPlainObject = isPlainObject_1,
10186
10359
  isTypedArray = requireIsTypedArray(),
10187
10360
  safeGet = require_safeGet(),
@@ -10278,7 +10451,7 @@ function require_baseMerge () {
10278
10451
  assignMergeValue = require_assignMergeValue(),
10279
10452
  baseFor = require_baseFor(),
10280
10453
  baseMergeDeep = require_baseMergeDeep(),
10281
- isObject = isObject_1,
10454
+ isObject = requireIsObject(),
10282
10455
  keysIn = requireKeysIn(),
10283
10456
  safeGet = require_safeGet();
10284
10457
 
@@ -10325,9 +10498,9 @@ var hasRequired_baseRest;
10325
10498
  function require_baseRest () {
10326
10499
  if (hasRequired_baseRest) return _baseRest;
10327
10500
  hasRequired_baseRest = 1;
10328
- var identity = identity_1,
10329
- overRest = _overRest,
10330
- setToString = _setToString;
10501
+ var identity = requireIdentity(),
10502
+ overRest = require_overRest(),
10503
+ setToString = require_setToString();
10331
10504
 
10332
10505
  /**
10333
10506
  * The base implementation of `_.rest` which doesn't validate or coerce arguments.
@@ -10352,9 +10525,9 @@ function require_isIterateeCall () {
10352
10525
  if (hasRequired_isIterateeCall) return _isIterateeCall;
10353
10526
  hasRequired_isIterateeCall = 1;
10354
10527
  var eq = requireEq(),
10355
- isArrayLike = isArrayLike_1,
10528
+ isArrayLike = requireIsArrayLike(),
10356
10529
  isIndex = require_isIndex(),
10357
- isObject = isObject_1;
10530
+ isObject = requireIsObject();
10358
10531
 
10359
10532
  /**
10360
10533
  * Checks if the given arguments are from an iteratee call.
@@ -35013,7 +35186,7 @@ class ShipEngineAPI {
35013
35186
  * The `rateShoppers` method provides access to the Rate Shoppers endpoints in ShipEngine
35014
35187
  * API.
35015
35188
  *
35016
- * @see {@link ShippingRulesAPI | The Shipping Rules API module}
35189
+ * @see {@link RateShoppersAPI | The Rate Shoppers API module}
35017
35190
  */
35018
35191
  get rateShoppers() {
35019
35192
  return new RateShoppersAPI(this.client);
@@ -37961,19 +38134,18 @@ var __objRest$g = (source, exclude) => {
37961
38134
  };
37962
38135
  const useListRateShoppers = (params) => {
37963
38136
  const { client } = useShipEngine();
37964
- const _a = params, { queryFnParams } = _a, rest = __objRest$g(_a, ["queryFnParams"]);
38137
+ const _a = __spreadValues$l({}, params), { queryFnParams } = _a, rest = __objRest$g(_a, ["queryFnParams"]);
37965
38138
  return reactQuery.useQuery(__spreadProps$i(__spreadValues$l({}, rest), {
37966
38139
  onError,
37967
38140
  queryFn: () => client.rateShoppers.list(queryFnParams),
37968
38141
  queryKey: ["useListRateShoppers", params],
37969
- select: (result) => result.data.rateShoppers
38142
+ select: (result) => result.data
37970
38143
  }));
37971
38144
  };
37972
38145
 
37973
38146
  const useGetRateShopper = (rateShopperId) => {
37974
38147
  const { client } = useShipEngine();
37975
38148
  return reactQuery.useQuery({
37976
- enabled: !!rateShopperId,
37977
38149
  onError,
37978
38150
  queryFn: () => {
37979
38151
  return client.rateShoppers.get(rateShopperId);