@shipengine/alchemy 6.0.96-next.1 → 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 +752 -571
  2. package/index.mjs +752 -571
  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;
3603
+
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
+ }
3597
3611
 
3598
- var isObject_1 = isObject$8;
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
+ }());
3858
+
3859
+ _baseCreate = baseCreate;
3860
+ return _baseCreate;
3861
+ }
3838
3862
 
3839
- var baseCreate$3 = _baseCreate,
3840
- isObject$4 = isObject_1;
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;
4680
+
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);
4634
4696
 
4635
- var _setToString = setToString$2;
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
  /**
@@ -4905,33 +4969,41 @@ var _getHolder = getHolder$2;
4905
4969
 
4906
4970
  /** Used as references for various `Number` constants. */
4907
4971
 
4908
- var MAX_SAFE_INTEGER$1 = 9007199254740991;
4972
+ var _isIndex;
4973
+ var hasRequired_isIndex;
4909
4974
 
4910
- /** Used to detect unsigned integer values. */
4911
- var reIsUint = /^(?:0|[1-9]\d*)$/;
4975
+ function require_isIndex () {
4976
+ if (hasRequired_isIndex) return _isIndex;
4977
+ hasRequired_isIndex = 1;
4978
+ var MAX_SAFE_INTEGER = 9007199254740991;
4912
4979
 
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;
4980
+ /** Used to detect unsigned integer values. */
4981
+ var reIsUint = /^(?:0|[1-9]\d*)$/;
4924
4982
 
4925
- return !!length &&
4926
- (type == 'number' ||
4927
- (type != 'symbol' && reIsUint.test(value))) &&
4928
- (value > -1 && value % 1 == 0 && value < length);
4929
- }
4983
+ /**
4984
+ * Checks if `value` is a valid array-like index.
4985
+ *
4986
+ * @private
4987
+ * @param {*} value The value to check.
4988
+ * @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index.
4989
+ * @returns {boolean} Returns `true` if `value` is a valid index, else `false`.
4990
+ */
4991
+ function isIndex(value, length) {
4992
+ var type = typeof value;
4993
+ length = length == null ? MAX_SAFE_INTEGER : length;
4930
4994
 
4931
- var _isIndex = isIndex$3;
4995
+ return !!length &&
4996
+ (type == 'number' ||
4997
+ (type != 'symbol' && reIsUint.test(value))) &&
4998
+ (value > -1 && value % 1 == 0 && value < length);
4999
+ }
5000
+
5001
+ _isIndex = isIndex;
5002
+ return _isIndex;
5003
+ }
4932
5004
 
4933
5005
  var copyArray$2 = _copyArray,
4934
- isIndex$2 = _isIndex;
5006
+ isIndex$1 = require_isIndex();
4935
5007
 
4936
5008
  /* Built-in method references for those with the same name as other `lodash` methods. */
4937
5009
  var nativeMin$1 = Math.min;
@@ -4953,7 +5025,7 @@ function reorder$1(array, indexes) {
4953
5025
 
4954
5026
  while (length--) {
4955
5027
  var index = indexes[length];
4956
- array[length] = isIndex$2(index, arrLength) ? oldArray[index] : undefined;
5028
+ array[length] = isIndex$1(index, arrLength) ? oldArray[index] : undefined;
4957
5029
  }
4958
5030
  return array;
4959
5031
  }
@@ -4999,7 +5071,7 @@ var composeArgs$1 = _composeArgs,
4999
5071
  getHolder$1 = _getHolder,
5000
5072
  reorder = _reorder,
5001
5073
  replaceHolders$2 = _replaceHolders,
5002
- root$7 = _root;
5074
+ root$6 = _root;
5003
5075
 
5004
5076
  /** Used to compose bitmasks for function metadata. */
5005
5077
  var WRAP_BIND_FLAG$3 = 1,
@@ -5074,7 +5146,7 @@ function createHybrid$2(func, bitmask, thisArg, partials, holders, partialsRight
5074
5146
  if (isAry && ary < length) {
5075
5147
  args.length = ary;
5076
5148
  }
5077
- if (this && this !== root$7 && this instanceof wrapper) {
5149
+ if (this && this !== root$6 && this instanceof wrapper) {
5078
5150
  fn = Ctor || createCtor$2(fn);
5079
5151
  }
5080
5152
  return fn.apply(thisBinding, args);
@@ -5084,13 +5156,13 @@ function createHybrid$2(func, bitmask, thisArg, partials, holders, partialsRight
5084
5156
 
5085
5157
  var _createHybrid = createHybrid$2;
5086
5158
 
5087
- var apply$2 = _apply,
5159
+ var apply$1 = _apply,
5088
5160
  createCtor$1 = _createCtor,
5089
5161
  createHybrid$1 = _createHybrid,
5090
5162
  createRecurry = _createRecurry,
5091
5163
  getHolder = _getHolder,
5092
5164
  replaceHolders$1 = _replaceHolders,
5093
- root$6 = _root;
5165
+ root$5 = _root;
5094
5166
 
5095
5167
  /**
5096
5168
  * Creates a function that wraps `func` to enable currying.
@@ -5123,17 +5195,17 @@ function createCurry$1(func, bitmask, arity) {
5123
5195
  func, bitmask, createHybrid$1, wrapper.placeholder, undefined,
5124
5196
  args, holders, undefined, undefined, arity - length);
5125
5197
  }
5126
- var fn = (this && this !== root$6 && this instanceof wrapper) ? Ctor : func;
5127
- 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);
5128
5200
  }
5129
5201
  return wrapper;
5130
5202
  }
5131
5203
 
5132
5204
  var _createCurry = createCurry$1;
5133
5205
 
5134
- var apply$1 = _apply,
5206
+ var apply = _apply,
5135
5207
  createCtor = _createCtor,
5136
- root$5 = _root;
5208
+ root$4 = _root;
5137
5209
 
5138
5210
  /** Used to compose bitmasks for function metadata. */
5139
5211
  var WRAP_BIND_FLAG$2 = 1;
@@ -5160,7 +5232,7 @@ function createPartial$1(func, bitmask, thisArg, partials) {
5160
5232
  leftIndex = -1,
5161
5233
  leftLength = partials.length,
5162
5234
  args = Array(leftLength + argsLength),
5163
- fn = (this && this !== root$5 && this instanceof wrapper) ? Ctor : func;
5235
+ fn = (this && this !== root$4 && this instanceof wrapper) ? Ctor : func;
5164
5236
 
5165
5237
  while (++leftIndex < leftLength) {
5166
5238
  args[leftIndex] = partials[leftIndex];
@@ -5168,7 +5240,7 @@ function createPartial$1(func, bitmask, thisArg, partials) {
5168
5240
  while (argsLength--) {
5169
5241
  args[leftIndex++] = arguments[++argsIndex];
5170
5242
  }
5171
- return apply$1(fn, isBind ? thisArg : this, args);
5243
+ return apply(fn, isBind ? thisArg : this, args);
5172
5244
  }
5173
5245
  return wrapper;
5174
5246
  }
@@ -5338,7 +5410,7 @@ function isSymbol$6(value) {
5338
5410
  var isSymbol_1 = isSymbol$6;
5339
5411
 
5340
5412
  var baseTrim = _baseTrim,
5341
- isObject$3 = isObject_1,
5413
+ isObject$3 = requireIsObject(),
5342
5414
  isSymbol$5 = isSymbol_1;
5343
5415
 
5344
5416
  /** Used as references for various `Number` constants. */
@@ -5505,7 +5577,7 @@ var WRAP_BIND_FLAG = 1,
5505
5577
  WRAP_PARTIAL_RIGHT_FLAG = 64;
5506
5578
 
5507
5579
  /* Built-in method references for those with the same name as other `lodash` methods. */
5508
- var nativeMax$1 = Math.max;
5580
+ var nativeMax = Math.max;
5509
5581
 
5510
5582
  /**
5511
5583
  * Creates a function that either curries or invokes `func` with optional
@@ -5542,7 +5614,7 @@ function createWrap$3(func, bitmask, thisArg, partials, holders, argPos, ary, ar
5542
5614
  bitmask &= ~(WRAP_PARTIAL_FLAG | WRAP_PARTIAL_RIGHT_FLAG);
5543
5615
  partials = holders = undefined;
5544
5616
  }
5545
- ary = ary === undefined ? ary : nativeMax$1(toInteger(ary), 0);
5617
+ ary = ary === undefined ? ary : nativeMax(toInteger(ary), 0);
5546
5618
  arity = arity === undefined ? arity : toInteger(arity);
5547
5619
  length -= holders ? holders.length : 0;
5548
5620
 
@@ -5569,7 +5641,7 @@ function createWrap$3(func, bitmask, thisArg, partials, holders, argPos, ary, ar
5569
5641
  holders = newData[4];
5570
5642
  arity = newData[9] = newData[9] === undefined
5571
5643
  ? (isBindKey ? 0 : func.length)
5572
- : nativeMax$1(newData[9] - length, 0);
5644
+ : nativeMax(newData[9] - length, 0);
5573
5645
 
5574
5646
  if (!arity && bitmask & (WRAP_CURRY_FLAG$1 | WRAP_CURRY_RIGHT_FLAG)) {
5575
5647
  bitmask &= ~(WRAP_CURRY_FLAG$1 | WRAP_CURRY_RIGHT_FLAG);
@@ -5619,31 +5691,39 @@ function ary(func, n, guard) {
5619
5691
 
5620
5692
  var ary_1 = ary;
5621
5693
 
5622
- var defineProperty = _defineProperty;
5694
+ var _baseAssignValue;
5695
+ var hasRequired_baseAssignValue;
5623
5696
 
5624
- /**
5625
- * The base implementation of `assignValue` and `assignMergeValue` without
5626
- * value checks.
5627
- *
5628
- * @private
5629
- * @param {Object} object The object to modify.
5630
- * @param {string} key The key of the property to assign.
5631
- * @param {*} value The value to assign.
5632
- */
5633
- function baseAssignValue$2(object, key, value) {
5634
- if (key == '__proto__' && defineProperty) {
5635
- defineProperty(object, key, {
5636
- 'configurable': true,
5637
- 'enumerable': true,
5638
- 'value': value,
5639
- 'writable': true
5640
- });
5641
- } else {
5642
- object[key] = value;
5643
- }
5644
- }
5697
+ function require_baseAssignValue () {
5698
+ if (hasRequired_baseAssignValue) return _baseAssignValue;
5699
+ hasRequired_baseAssignValue = 1;
5700
+ var defineProperty = require_defineProperty();
5645
5701
 
5646
- var _baseAssignValue = baseAssignValue$2;
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
+ }
5723
+
5724
+ _baseAssignValue = baseAssignValue;
5725
+ return _baseAssignValue;
5726
+ }
5647
5727
 
5648
5728
  /**
5649
5729
  * Performs a
@@ -5692,14 +5772,14 @@ function requireEq () {
5692
5772
  return eq_1;
5693
5773
  }
5694
5774
 
5695
- var baseAssignValue$1 = _baseAssignValue,
5775
+ var baseAssignValue$1 = require_baseAssignValue(),
5696
5776
  eq$1 = requireEq();
5697
5777
 
5698
5778
  /** Used for built-in method references. */
5699
- var objectProto$8 = Object.prototype;
5779
+ var objectProto$7 = Object.prototype;
5700
5780
 
5701
5781
  /** Used to check objects for own properties. */
5702
- var hasOwnProperty$6 = objectProto$8.hasOwnProperty;
5782
+ var hasOwnProperty$5 = objectProto$7.hasOwnProperty;
5703
5783
 
5704
5784
  /**
5705
5785
  * Assigns `value` to `key` of `object` if the existing value is not equivalent
@@ -5713,7 +5793,7 @@ var hasOwnProperty$6 = objectProto$8.hasOwnProperty;
5713
5793
  */
5714
5794
  function assignValue$2(object, key, value) {
5715
5795
  var objValue = object[key];
5716
- if (!(hasOwnProperty$6.call(object, key) && eq$1(objValue, value)) ||
5796
+ if (!(hasOwnProperty$5.call(object, key) && eq$1(objValue, value)) ||
5717
5797
  (value === undefined && !(key in object))) {
5718
5798
  baseAssignValue$1(object, key, value);
5719
5799
  }
@@ -5722,7 +5802,7 @@ function assignValue$2(object, key, value) {
5722
5802
  var _assignValue = assignValue$2;
5723
5803
 
5724
5804
  var assignValue$1 = _assignValue,
5725
- baseAssignValue = _baseAssignValue;
5805
+ baseAssignValue = require_baseAssignValue();
5726
5806
 
5727
5807
  /**
5728
5808
  * Copies properties of `source` to `object`.
@@ -5772,17 +5852,25 @@ var _copyObject = copyObject$4;
5772
5852
  * @returns {Array} Returns the array of results.
5773
5853
  */
5774
5854
 
5775
- function baseTimes$1(n, iteratee) {
5776
- var index = -1,
5777
- result = Array(n);
5855
+ var _baseTimes;
5856
+ var hasRequired_baseTimes;
5778
5857
 
5779
- while (++index < n) {
5780
- result[index] = iteratee(index);
5781
- }
5782
- return result;
5783
- }
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);
5784
5864
 
5785
- var _baseTimes = baseTimes$1;
5865
+ while (++index < n) {
5866
+ result[index] = iteratee(index);
5867
+ }
5868
+ return result;
5869
+ }
5870
+
5871
+ _baseTimes = baseTimes;
5872
+ return _baseTimes;
5873
+ }
5786
5874
 
5787
5875
  var _baseIsArguments;
5788
5876
  var hasRequired_baseIsArguments;
@@ -5857,7 +5945,7 @@ function requireIsArguments () {
5857
5945
  }
5858
5946
 
5859
5947
  var isBufferExports = {};
5860
- var isBuffer$5 = {
5948
+ var isBuffer$4 = {
5861
5949
  get exports(){ return isBufferExports; },
5862
5950
  set exports(v){ isBufferExports = v; },
5863
5951
  };
@@ -5876,90 +5964,113 @@ var isBuffer$5 = {
5876
5964
  * // => [false, false]
5877
5965
  */
5878
5966
 
5879
- function stubFalse() {
5880
- 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;
5881
5979
  }
5882
5980
 
5883
- var stubFalse_1 = stubFalse;
5981
+ var hasRequiredIsBuffer;
5884
5982
 
5885
- (function (module, exports) {
5886
- var root = _root,
5887
- 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();
5888
5989
 
5889
- /** Detect free variable `exports`. */
5890
- var freeExports = exports && !exports.nodeType && exports;
5990
+ /** Detect free variable `exports`. */
5991
+ var freeExports = exports && !exports.nodeType && exports;
5891
5992
 
5892
- /** Detect free variable `module`. */
5893
- var freeModule = freeExports && 'object' == 'object' && module && !module.nodeType && module;
5993
+ /** Detect free variable `module`. */
5994
+ var freeModule = freeExports && 'object' == 'object' && module && !module.nodeType && module;
5894
5995
 
5895
- /** Detect the popular CommonJS extension `module.exports`. */
5896
- var moduleExports = freeModule && freeModule.exports === freeExports;
5996
+ /** Detect the popular CommonJS extension `module.exports`. */
5997
+ var moduleExports = freeModule && freeModule.exports === freeExports;
5897
5998
 
5898
- /** Built-in value references. */
5899
- var Buffer = moduleExports ? root.Buffer : undefined;
5999
+ /** Built-in value references. */
6000
+ var Buffer = moduleExports ? root.Buffer : undefined;
5900
6001
 
5901
- /* Built-in method references for those with the same name as other `lodash` methods. */
5902
- 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;
5903
6038
 
5904
6039
  /**
5905
- * 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).
5906
6044
  *
5907
6045
  * @static
5908
6046
  * @memberOf _
5909
- * @since 4.3.0
6047
+ * @since 4.0.0
5910
6048
  * @category Lang
5911
6049
  * @param {*} value The value to check.
5912
- * @returns {boolean} Returns `true` if `value` is a buffer, else `false`.
6050
+ * @returns {boolean} Returns `true` if `value` is a valid length, else `false`.
5913
6051
  * @example
5914
6052
  *
5915
- * _.isBuffer(new Buffer(2));
6053
+ * _.isLength(3);
5916
6054
  * // => true
5917
6055
  *
5918
- * _.isBuffer(new Uint8Array(2));
6056
+ * _.isLength(Number.MIN_VALUE);
6057
+ * // => false
6058
+ *
6059
+ * _.isLength(Infinity);
6060
+ * // => false
6061
+ *
6062
+ * _.isLength('3');
5919
6063
  * // => false
5920
6064
  */
5921
- var isBuffer = nativeIsBuffer || stubFalse;
5922
-
5923
- module.exports = isBuffer;
5924
- } (isBuffer$5, isBufferExports));
5925
-
5926
- /** Used as references for various `Number` constants. */
5927
-
5928
- 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
+ }
5929
6069
 
5930
- /**
5931
- * Checks if `value` is a valid array-like length.
5932
- *
5933
- * **Note:** This method is loosely based on
5934
- * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength).
5935
- *
5936
- * @static
5937
- * @memberOf _
5938
- * @since 4.0.0
5939
- * @category Lang
5940
- * @param {*} value The value to check.
5941
- * @returns {boolean} Returns `true` if `value` is a valid length, else `false`.
5942
- * @example
5943
- *
5944
- * _.isLength(3);
5945
- * // => true
5946
- *
5947
- * _.isLength(Number.MIN_VALUE);
5948
- * // => false
5949
- *
5950
- * _.isLength(Infinity);
5951
- * // => false
5952
- *
5953
- * _.isLength('3');
5954
- * // => false
5955
- */
5956
- function isLength$2(value) {
5957
- return typeof value == 'number' &&
5958
- value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER;
6070
+ isLength_1 = isLength;
6071
+ return isLength_1;
5959
6072
  }
5960
6073
 
5961
- var isLength_1 = isLength$2;
5962
-
5963
6074
  var _baseIsTypedArray;
5964
6075
  var hasRequired_baseIsTypedArray;
5965
6076
 
@@ -5967,7 +6078,7 @@ function require_baseIsTypedArray () {
5967
6078
  if (hasRequired_baseIsTypedArray) return _baseIsTypedArray;
5968
6079
  hasRequired_baseIsTypedArray = 1;
5969
6080
  var baseGetTag = _baseGetTag,
5970
- isLength = isLength_1,
6081
+ isLength = requireIsLength(),
5971
6082
  isObjectLike = isObjectLike_1;
5972
6083
 
5973
6084
  /** `Object#toString` result references. */
@@ -6037,13 +6148,21 @@ function require_baseIsTypedArray () {
6037
6148
  * @returns {Function} Returns the new capped function.
6038
6149
  */
6039
6150
 
6040
- function baseUnary$2(func) {
6041
- return function(value) {
6042
- return func(value);
6043
- };
6044
- }
6151
+ var _baseUnary;
6152
+ var hasRequired_baseUnary;
6045
6153
 
6046
- 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
+ }
6047
6166
 
6048
6167
  var _nodeUtilExports = {};
6049
6168
  var _nodeUtil = {
@@ -6051,38 +6170,45 @@ var _nodeUtil = {
6051
6170
  set exports(v){ _nodeUtilExports = v; },
6052
6171
  };
6053
6172
 
6054
- (function (module, exports) {
6055
- var freeGlobal = _freeGlobal;
6173
+ var hasRequired_nodeUtil;
6056
6174
 
6057
- /** Detect free variable `exports`. */
6058
- 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;
6059
6180
 
6060
- /** Detect free variable `module`. */
6061
- var freeModule = freeExports && 'object' == 'object' && module && !module.nodeType && module;
6181
+ /** Detect free variable `exports`. */
6182
+ var freeExports = exports && !exports.nodeType && exports;
6062
6183
 
6063
- /** Detect the popular CommonJS extension `module.exports`. */
6064
- var moduleExports = freeModule && freeModule.exports === freeExports;
6184
+ /** Detect free variable `module`. */
6185
+ var freeModule = freeExports && 'object' == 'object' && module && !module.nodeType && module;
6065
6186
 
6066
- /** Detect free variable `process` from Node.js. */
6067
- var freeProcess = moduleExports && freeGlobal.process;
6187
+ /** Detect the popular CommonJS extension `module.exports`. */
6188
+ var moduleExports = freeModule && freeModule.exports === freeExports;
6068
6189
 
6069
- /** Used to access faster Node.js helpers. */
6070
- var nodeUtil = (function() {
6071
- try {
6072
- // Use `util.types` for Node.js 10+.
6073
- var types = freeModule && freeModule.require && freeModule.require('util').types;
6190
+ /** Detect free variable `process` from Node.js. */
6191
+ var freeProcess = moduleExports && freeGlobal.process;
6074
6192
 
6075
- if (types) {
6076
- return types;
6077
- }
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;
6078
6198
 
6079
- // Legacy `process.binding('util')` for Node.js < 10.
6080
- return freeProcess && freeProcess.binding && freeProcess.binding('util');
6081
- } catch (e) {}
6082
- }());
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
+ }());
6083
6207
 
6084
- module.exports = nodeUtil;
6208
+ module.exports = nodeUtil;
6085
6209
  } (_nodeUtil, _nodeUtilExports));
6210
+ return _nodeUtilExports;
6211
+ }
6086
6212
 
6087
6213
  var isTypedArray_1;
6088
6214
  var hasRequiredIsTypedArray;
@@ -6091,8 +6217,8 @@ function requireIsTypedArray () {
6091
6217
  if (hasRequiredIsTypedArray) return isTypedArray_1;
6092
6218
  hasRequiredIsTypedArray = 1;
6093
6219
  var baseIsTypedArray = require_baseIsTypedArray(),
6094
- baseUnary = _baseUnary,
6095
- nodeUtil = _nodeUtilExports;
6220
+ baseUnary = require_baseUnary(),
6221
+ nodeUtil = require_nodeUtil();
6096
6222
 
6097
6223
  /* Node.js helper references. */
6098
6224
  var nodeIsTypedArray = nodeUtil && nodeUtil.isTypedArray;
@@ -6120,55 +6246,63 @@ function requireIsTypedArray () {
6120
6246
  return isTypedArray_1;
6121
6247
  }
6122
6248
 
6123
- var baseTimes = _baseTimes,
6124
- isArguments$2 = requireIsArguments(),
6125
- isArray$f = isArray_1,
6126
- isBuffer$4 = isBufferExports,
6127
- isIndex$1 = _isIndex,
6128
- isTypedArray$1 = requireIsTypedArray();
6249
+ var _arrayLikeKeys;
6250
+ var hasRequired_arrayLikeKeys;
6129
6251
 
6130
- /** Used for built-in method references. */
6131
- 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();
6132
6261
 
6133
- /** Used to check objects for own properties. */
6134
- var hasOwnProperty$5 = objectProto$7.hasOwnProperty;
6262
+ /** Used for built-in method references. */
6263
+ var objectProto = Object.prototype;
6135
6264
 
6136
- /**
6137
- * Creates an array of the enumerable property names of the array-like `value`.
6138
- *
6139
- * @private
6140
- * @param {*} value The value to query.
6141
- * @param {boolean} inherited Specify returning inherited property names.
6142
- * @returns {Array} Returns the array of property names.
6143
- */
6144
- function arrayLikeKeys$1(value, inherited) {
6145
- var isArr = isArray$f(value),
6146
- isArg = !isArr && isArguments$2(value),
6147
- isBuff = !isArr && !isArg && isBuffer$4(value),
6148
- isType = !isArr && !isArg && !isBuff && isTypedArray$1(value),
6149
- skipIndexes = isArr || isArg || isBuff || isType,
6150
- result = skipIndexes ? baseTimes(value.length, String) : [],
6151
- length = result.length;
6265
+ /** Used to check objects for own properties. */
6266
+ var hasOwnProperty = objectProto.hasOwnProperty;
6152
6267
 
6153
- for (var key in value) {
6154
- if ((inherited || hasOwnProperty$5.call(value, key)) &&
6155
- !(skipIndexes && (
6156
- // Safari 9 has enumerable `arguments.length` in strict mode.
6157
- key == 'length' ||
6158
- // Node.js 0.10 has enumerable non-index properties on buffers.
6159
- (isBuff && (key == 'offset' || key == 'parent')) ||
6160
- // PhantomJS 2 has enumerable non-index properties on typed arrays.
6161
- (isType && (key == 'buffer' || key == 'byteLength' || key == 'byteOffset')) ||
6162
- // Skip index properties.
6163
- isIndex$1(key, length)
6164
- ))) {
6165
- result.push(key);
6166
- }
6167
- }
6168
- return result;
6169
- }
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
+ }
6170
6302
 
6171
- var _arrayLikeKeys = arrayLikeKeys$1;
6303
+ _arrayLikeKeys = arrayLikeKeys;
6304
+ return _arrayLikeKeys;
6305
+ }
6172
6306
 
6173
6307
  /** Used for built-in method references. */
6174
6308
 
@@ -6181,14 +6315,14 @@ var objectProto$6 = Object.prototype;
6181
6315
  * @param {*} value The value to check.
6182
6316
  * @returns {boolean} Returns `true` if `value` is a prototype, else `false`.
6183
6317
  */
6184
- function isPrototype$2(value) {
6318
+ function isPrototype$1(value) {
6185
6319
  var Ctor = value && value.constructor,
6186
6320
  proto = (typeof Ctor == 'function' && Ctor.prototype) || objectProto$6;
6187
6321
 
6188
6322
  return value === proto;
6189
6323
  }
6190
6324
 
6191
- var _isPrototype = isPrototype$2;
6325
+ var _isPrototype = isPrototype$1;
6192
6326
 
6193
6327
  /**
6194
6328
  * Creates a unary function that invokes `func` with its argument transformed.
@@ -6214,7 +6348,7 @@ var nativeKeys$1 = overArg$1(Object.keys, Object);
6214
6348
 
6215
6349
  var _nativeKeys = nativeKeys$1;
6216
6350
 
6217
- var isPrototype$1 = _isPrototype,
6351
+ var isPrototype = _isPrototype,
6218
6352
  nativeKeys = _nativeKeys;
6219
6353
 
6220
6354
  /** Used for built-in method references. */
@@ -6231,7 +6365,7 @@ var hasOwnProperty$4 = objectProto$5.hasOwnProperty;
6231
6365
  * @returns {Array} Returns the array of property names.
6232
6366
  */
6233
6367
  function baseKeys$1(object) {
6234
- if (!isPrototype$1(object)) {
6368
+ if (!isPrototype(object)) {
6235
6369
  return nativeKeys(object);
6236
6370
  }
6237
6371
  var result = [];
@@ -6245,43 +6379,51 @@ function baseKeys$1(object) {
6245
6379
 
6246
6380
  var _baseKeys = baseKeys$1;
6247
6381
 
6248
- var isFunction$1 = isFunction_1,
6249
- isLength$1 = isLength_1;
6382
+ var isArrayLike_1;
6383
+ var hasRequiredIsArrayLike;
6250
6384
 
6251
- /**
6252
- * Checks if `value` is array-like. A value is considered array-like if it's
6253
- * not a function and has a `value.length` that's an integer greater than or
6254
- * equal to `0` and less than or equal to `Number.MAX_SAFE_INTEGER`.
6255
- *
6256
- * @static
6257
- * @memberOf _
6258
- * @since 4.0.0
6259
- * @category Lang
6260
- * @param {*} value The value to check.
6261
- * @returns {boolean} Returns `true` if `value` is array-like, else `false`.
6262
- * @example
6263
- *
6264
- * _.isArrayLike([1, 2, 3]);
6265
- * // => true
6266
- *
6267
- * _.isArrayLike(document.body.children);
6268
- * // => true
6269
- *
6270
- * _.isArrayLike('abc');
6271
- * // => true
6272
- *
6273
- * _.isArrayLike(_.noop);
6274
- * // => false
6275
- */
6276
- function isArrayLike$1(value) {
6277
- return value != null && isLength$1(value.length) && !isFunction$1(value);
6278
- }
6385
+ function requireIsArrayLike () {
6386
+ if (hasRequiredIsArrayLike) return isArrayLike_1;
6387
+ hasRequiredIsArrayLike = 1;
6388
+ var isFunction = isFunction_1,
6389
+ isLength = requireIsLength();
6279
6390
 
6280
- 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
+ }
6419
+
6420
+ isArrayLike_1 = isArrayLike;
6421
+ return isArrayLike_1;
6422
+ }
6281
6423
 
6282
- var arrayLikeKeys = _arrayLikeKeys,
6424
+ var arrayLikeKeys = require_arrayLikeKeys(),
6283
6425
  baseKeys = _baseKeys,
6284
- isArrayLike = isArrayLike_1;
6426
+ isArrayLike = requireIsArrayLike();
6285
6427
 
6286
6428
  /**
6287
6429
  * Creates an array of the own enumerable property names of `object`.
@@ -6662,10 +6804,10 @@ function require_stackHas () {
6662
6804
  }
6663
6805
 
6664
6806
  var getNative$3 = _getNative,
6665
- root$4 = _root;
6807
+ root$3 = _root;
6666
6808
 
6667
6809
  /* Built-in method references that are verified to be native. */
6668
- var Map$2 = getNative$3(root$4, 'Map');
6810
+ var Map$2 = getNative$3(root$3, 'Map');
6669
6811
 
6670
6812
  var _Map = Map$2;
6671
6813
 
@@ -7225,7 +7367,7 @@ var hasRequired_baseKeysIn;
7225
7367
  function require_baseKeysIn () {
7226
7368
  if (hasRequired_baseKeysIn) return _baseKeysIn;
7227
7369
  hasRequired_baseKeysIn = 1;
7228
- var isObject = isObject_1,
7370
+ var isObject = requireIsObject(),
7229
7371
  isPrototype = _isPrototype,
7230
7372
  nativeKeysIn = require_nativeKeysIn();
7231
7373
 
@@ -7267,9 +7409,9 @@ var hasRequiredKeysIn;
7267
7409
  function requireKeysIn () {
7268
7410
  if (hasRequiredKeysIn) return keysIn_1;
7269
7411
  hasRequiredKeysIn = 1;
7270
- var arrayLikeKeys = _arrayLikeKeys,
7412
+ var arrayLikeKeys = require_arrayLikeKeys(),
7271
7413
  baseKeysIn = require_baseKeysIn(),
7272
- isArrayLike = isArrayLike_1;
7414
+ isArrayLike = requireIsArrayLike();
7273
7415
 
7274
7416
  /**
7275
7417
  * Creates an array of the own and inherited enumerable property names of `object`.
@@ -7326,43 +7468,50 @@ var _cloneBuffer = {
7326
7468
  set exports(v){ _cloneBufferExports = v; },
7327
7469
  };
7328
7470
 
7329
- (function (module, exports) {
7330
- var root = _root;
7331
-
7332
- /** Detect free variable `exports`. */
7333
- var freeExports = exports && !exports.nodeType && exports;
7334
-
7335
- /** Detect free variable `module`. */
7336
- var freeModule = freeExports && 'object' == 'object' && module && !module.nodeType && module;
7337
-
7338
- /** Detect the popular CommonJS extension `module.exports`. */
7339
- var moduleExports = freeModule && freeModule.exports === freeExports;
7340
-
7341
- /** Built-in value references. */
7342
- var Buffer = moduleExports ? root.Buffer : undefined,
7343
- allocUnsafe = Buffer ? Buffer.allocUnsafe : undefined;
7344
-
7345
- /**
7346
- * Creates a clone of `buffer`.
7347
- *
7348
- * @private
7349
- * @param {Buffer} buffer The buffer to clone.
7350
- * @param {boolean} [isDeep] Specify a deep clone.
7351
- * @returns {Buffer} Returns the cloned buffer.
7352
- */
7353
- function cloneBuffer(buffer, isDeep) {
7354
- if (isDeep) {
7355
- return buffer.slice();
7356
- }
7357
- var length = buffer.length,
7358
- result = allocUnsafe ? allocUnsafe(length) : new buffer.constructor(length);
7359
-
7360
- buffer.copy(result);
7361
- return result;
7362
- }
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
+ }
7363
7510
 
7364
- module.exports = cloneBuffer;
7511
+ module.exports = cloneBuffer;
7365
7512
  } (_cloneBuffer, _cloneBufferExports));
7513
+ return _cloneBufferExports;
7514
+ }
7366
7515
 
7367
7516
  /**
7368
7517
  * A specialized version of `_.filter` for arrays without support for
@@ -7489,12 +7638,12 @@ var _arrayPush = arrayPush$3;
7489
7638
  var overArg = _overArg;
7490
7639
 
7491
7640
  /** Built-in value references. */
7492
- var getPrototype$3 = overArg(Object.getPrototypeOf, Object);
7641
+ var getPrototype$2 = overArg(Object.getPrototypeOf, Object);
7493
7642
 
7494
- var _getPrototype = getPrototype$3;
7643
+ var _getPrototype = getPrototype$2;
7495
7644
 
7496
7645
  var arrayPush$2 = _arrayPush,
7497
- getPrototype$2 = _getPrototype,
7646
+ getPrototype$1 = _getPrototype,
7498
7647
  getSymbols$1 = _getSymbols,
7499
7648
  stubArray = stubArray_1;
7500
7649
 
@@ -7512,7 +7661,7 @@ var getSymbolsIn$2 = !nativeGetSymbols ? stubArray : function(object) {
7512
7661
  var result = [];
7513
7662
  while (object) {
7514
7663
  arrayPush$2(result, getSymbols$1(object));
7515
- object = getPrototype$2(object);
7664
+ object = getPrototype$1(object);
7516
7665
  }
7517
7666
  return result;
7518
7667
  };
@@ -7593,26 +7742,26 @@ function getAllKeysIn$1(object) {
7593
7742
  var _getAllKeysIn = getAllKeysIn$1;
7594
7743
 
7595
7744
  var getNative$2 = _getNative,
7596
- root$3 = _root;
7745
+ root$2 = _root;
7597
7746
 
7598
7747
  /* Built-in method references that are verified to be native. */
7599
- var DataView$2 = getNative$2(root$3, 'DataView');
7748
+ var DataView$2 = getNative$2(root$2, 'DataView');
7600
7749
 
7601
7750
  var _DataView = DataView$2;
7602
7751
 
7603
7752
  var getNative$1 = _getNative,
7604
- root$2 = _root;
7753
+ root$1 = _root;
7605
7754
 
7606
7755
  /* Built-in method references that are verified to be native. */
7607
- var Promise$2 = getNative$1(root$2, 'Promise');
7756
+ var Promise$2 = getNative$1(root$1, 'Promise');
7608
7757
 
7609
7758
  var _Promise = Promise$2;
7610
7759
 
7611
7760
  var getNative = _getNative,
7612
- root$1 = _root;
7761
+ root = _root;
7613
7762
 
7614
7763
  /* Built-in method references that are verified to be native. */
7615
- var Set$2 = getNative(root$1, 'Set');
7764
+ var Set$2 = getNative(root, 'Set');
7616
7765
 
7617
7766
  var _Set = Set$2;
7618
7767
 
@@ -7703,31 +7852,47 @@ function initCloneArray$1(array) {
7703
7852
 
7704
7853
  var _initCloneArray = initCloneArray$1;
7705
7854
 
7706
- var root = _root;
7707
-
7708
- /** Built-in value references. */
7709
- var Uint8Array$3 = root.Uint8Array;
7855
+ var _Uint8Array;
7856
+ var hasRequired_Uint8Array;
7710
7857
 
7711
- var _Uint8Array = Uint8Array$3;
7858
+ function require_Uint8Array () {
7859
+ if (hasRequired_Uint8Array) return _Uint8Array;
7860
+ hasRequired_Uint8Array = 1;
7861
+ var root = _root;
7712
7862
 
7713
- var Uint8Array$2 = _Uint8Array;
7863
+ /** Built-in value references. */
7864
+ var Uint8Array = root.Uint8Array;
7714
7865
 
7715
- /**
7716
- * Creates a clone of `arrayBuffer`.
7717
- *
7718
- * @private
7719
- * @param {ArrayBuffer} arrayBuffer The array buffer to clone.
7720
- * @returns {ArrayBuffer} Returns the cloned array buffer.
7721
- */
7722
- function cloneArrayBuffer$2(arrayBuffer) {
7723
- var result = new arrayBuffer.constructor(arrayBuffer.byteLength);
7724
- new Uint8Array$2(result).set(new Uint8Array$2(arrayBuffer));
7725
- return result;
7866
+ _Uint8Array = Uint8Array;
7867
+ return _Uint8Array;
7726
7868
  }
7727
7869
 
7728
- var _cloneArrayBuffer = cloneArrayBuffer$2;
7870
+ var _cloneArrayBuffer;
7871
+ var hasRequired_cloneArrayBuffer;
7729
7872
 
7730
- var cloneArrayBuffer$1 = _cloneArrayBuffer;
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
+ }
7894
+
7895
+ var cloneArrayBuffer$1 = require_cloneArrayBuffer();
7731
7896
 
7732
7897
  /**
7733
7898
  * Creates a clone of `dataView`.
@@ -7788,7 +7953,7 @@ var hasRequired_cloneTypedArray;
7788
7953
  function require_cloneTypedArray () {
7789
7954
  if (hasRequired_cloneTypedArray) return _cloneTypedArray;
7790
7955
  hasRequired_cloneTypedArray = 1;
7791
- var cloneArrayBuffer = _cloneArrayBuffer;
7956
+ var cloneArrayBuffer = require_cloneArrayBuffer();
7792
7957
 
7793
7958
  /**
7794
7959
  * Creates a clone of `typedArray`.
@@ -7807,7 +7972,7 @@ function require_cloneTypedArray () {
7807
7972
  return _cloneTypedArray;
7808
7973
  }
7809
7974
 
7810
- var cloneArrayBuffer = _cloneArrayBuffer,
7975
+ var cloneArrayBuffer = require_cloneArrayBuffer(),
7811
7976
  cloneDataView = _cloneDataView,
7812
7977
  cloneRegExp = _cloneRegExp,
7813
7978
  cloneSymbol = _cloneSymbol,
@@ -7885,24 +8050,32 @@ function initCloneByTag$1(object, tag, isDeep) {
7885
8050
 
7886
8051
  var _initCloneByTag = initCloneByTag$1;
7887
8052
 
7888
- var baseCreate = _baseCreate,
7889
- getPrototype$1 = _getPrototype,
7890
- isPrototype = _isPrototype;
8053
+ var _initCloneObject;
8054
+ var hasRequired_initCloneObject;
7891
8055
 
7892
- /**
7893
- * Initializes an object clone.
7894
- *
7895
- * @private
7896
- * @param {Object} object The object to clone.
7897
- * @returns {Object} Returns the initialized clone.
7898
- */
7899
- function initCloneObject$1(object) {
7900
- return (typeof object.constructor == 'function' && !isPrototype(object))
7901
- ? baseCreate(getPrototype$1(object))
7902
- : {};
7903
- }
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;
7904
8062
 
7905
- 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
+ }
7906
8079
 
7907
8080
  var getTag$4 = _getTag,
7908
8081
  isObjectLike$5 = isObjectLike_1;
@@ -7924,8 +8097,8 @@ function baseIsMap$1(value) {
7924
8097
  var _baseIsMap = baseIsMap$1;
7925
8098
 
7926
8099
  var baseIsMap = _baseIsMap,
7927
- baseUnary$1 = _baseUnary,
7928
- nodeUtil$1 = _nodeUtilExports;
8100
+ baseUnary$1 = require_baseUnary(),
8101
+ nodeUtil$1 = require_nodeUtil();
7929
8102
 
7930
8103
  /* Node.js helper references. */
7931
8104
  var nodeIsMap = nodeUtil$1 && nodeUtil$1.isMap;
@@ -7971,8 +8144,8 @@ function baseIsSet$1(value) {
7971
8144
  var _baseIsSet = baseIsSet$1;
7972
8145
 
7973
8146
  var baseIsSet = _baseIsSet,
7974
- baseUnary = _baseUnary,
7975
- nodeUtil = _nodeUtilExports;
8147
+ baseUnary = require_baseUnary(),
8148
+ nodeUtil = require_nodeUtil();
7976
8149
 
7977
8150
  /* Node.js helper references. */
7978
8151
  var nodeIsSet = nodeUtil && nodeUtil.isSet;
@@ -8003,7 +8176,7 @@ var Stack$2 = require_Stack(),
8003
8176
  assignValue = _assignValue,
8004
8177
  baseAssign = _baseAssign,
8005
8178
  baseAssignIn = _baseAssignIn,
8006
- cloneBuffer = _cloneBufferExports,
8179
+ cloneBuffer = require_cloneBuffer(),
8007
8180
  copyArray$1 = _copyArray,
8008
8181
  copySymbols = _copySymbols,
8009
8182
  copySymbolsIn = _copySymbolsIn,
@@ -8012,11 +8185,11 @@ var Stack$2 = require_Stack(),
8012
8185
  getTag$2 = _getTag,
8013
8186
  initCloneArray = _initCloneArray,
8014
8187
  initCloneByTag = _initCloneByTag,
8015
- initCloneObject = _initCloneObject,
8188
+ initCloneObject = require_initCloneObject(),
8016
8189
  isArray$d = isArray_1,
8017
- isBuffer$3 = isBufferExports,
8190
+ isBuffer$3 = requireIsBuffer(),
8018
8191
  isMap$1 = isMap_1,
8019
- isObject$2 = isObject_1,
8192
+ isObject$2 = requireIsObject(),
8020
8193
  isSet$1 = isSet_1,
8021
8194
  keys$1 = keys_1,
8022
8195
  keysIn = requireKeysIn();
@@ -8620,7 +8793,7 @@ function setToArray$1(set) {
8620
8793
  var _setToArray = setToArray$1;
8621
8794
 
8622
8795
  var Symbol$3 = _Symbol,
8623
- Uint8Array$1 = _Uint8Array,
8796
+ Uint8Array$1 = require_Uint8Array(),
8624
8797
  eq = requireEq(),
8625
8798
  equalArrays$1 = _equalArrays,
8626
8799
  mapToArray = _mapToArray,
@@ -8829,7 +9002,7 @@ var Stack$1 = require_Stack(),
8829
9002
  equalObjects = _equalObjects,
8830
9003
  getTag = _getTag,
8831
9004
  isArray$c = isArray_1,
8832
- isBuffer$2 = isBufferExports,
9005
+ isBuffer$2 = requireIsBuffer(),
8833
9006
  isTypedArray = requireIsTypedArray();
8834
9007
 
8835
9008
  /** Used to compose bitmasks for value comparisons. */
@@ -8999,7 +9172,7 @@ function baseIsMatch$1(object, source, matchData, customizer) {
8999
9172
 
9000
9173
  var _baseIsMatch = baseIsMatch$1;
9001
9174
 
9002
- var isObject$1 = isObject_1;
9175
+ var isObject$1 = requireIsObject();
9003
9176
 
9004
9177
  /**
9005
9178
  * Checks if `value` is suitable for strict equality comparisons, i.e. `===`.
@@ -9455,8 +9628,8 @@ var _baseHasIn = baseHasIn$1;
9455
9628
  var castPath = _castPath,
9456
9629
  isArguments$1 = requireIsArguments(),
9457
9630
  isArray$8 = isArray_1,
9458
- isIndex = _isIndex,
9459
- isLength = isLength_1,
9631
+ isIndex = require_isIndex(),
9632
+ isLength = requireIsLength(),
9460
9633
  toKey$3 = _toKey;
9461
9634
 
9462
9635
  /**
@@ -9629,7 +9802,7 @@ var property_1 = property$1;
9629
9802
 
9630
9803
  var baseMatches = _baseMatches,
9631
9804
  baseMatchesProperty = _baseMatchesProperty,
9632
- identity = identity_1,
9805
+ identity = requireIdentity(),
9633
9806
  isArray$7 = isArray_1,
9634
9807
  property = property_1;
9635
9808
 
@@ -9796,46 +9969,54 @@ function flatten$1(array) {
9796
9969
 
9797
9970
  var flatten_1 = flatten$1;
9798
9971
 
9799
- var apply = _apply;
9972
+ var _overRest;
9973
+ var hasRequired_overRest;
9800
9974
 
9801
- /* Built-in method references for those with the same name as other `lodash` methods. */
9802
- var nativeMax = Math.max;
9975
+ function require_overRest () {
9976
+ if (hasRequired_overRest) return _overRest;
9977
+ hasRequired_overRest = 1;
9978
+ var apply = _apply;
9803
9979
 
9804
- /**
9805
- * A specialized version of `baseRest` which transforms the rest array.
9806
- *
9807
- * @private
9808
- * @param {Function} func The function to apply a rest parameter to.
9809
- * @param {number} [start=func.length-1] The start position of the rest parameter.
9810
- * @param {Function} transform The rest array transform.
9811
- * @returns {Function} Returns the new function.
9812
- */
9813
- function overRest$1(func, start, transform) {
9814
- start = nativeMax(start === undefined ? (func.length - 1) : start, 0);
9815
- return function() {
9816
- var args = arguments,
9817
- index = -1,
9818
- length = nativeMax(args.length - start, 0),
9819
- array = Array(length);
9980
+ /* Built-in method references for those with the same name as other `lodash` methods. */
9981
+ var nativeMax = Math.max;
9820
9982
 
9821
- while (++index < length) {
9822
- array[index] = args[start + index];
9823
- }
9824
- index = -1;
9825
- var otherArgs = Array(start + 1);
9826
- while (++index < start) {
9827
- otherArgs[index] = args[index];
9828
- }
9829
- otherArgs[start] = transform(array);
9830
- return apply(func, this, otherArgs);
9831
- };
9832
- }
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
+ }
9833
10012
 
9834
- var _overRest = overRest$1;
10013
+ _overRest = overRest;
10014
+ return _overRest;
10015
+ }
9835
10016
 
9836
10017
  var flatten = flatten_1,
9837
- overRest = _overRest,
9838
- setToString = _setToString;
10018
+ overRest = require_overRest(),
10019
+ setToString = require_setToString();
9839
10020
 
9840
10021
  /**
9841
10022
  * A specialized version of `baseRest` which flattens the rest array.
@@ -9960,7 +10141,7 @@ var hasRequired_assignMergeValue;
9960
10141
  function require_assignMergeValue () {
9961
10142
  if (hasRequired_assignMergeValue) return _assignMergeValue;
9962
10143
  hasRequired_assignMergeValue = 1;
9963
- var baseAssignValue = _baseAssignValue,
10144
+ var baseAssignValue = require_baseAssignValue(),
9964
10145
  eq = requireEq();
9965
10146
 
9966
10147
  /**
@@ -10049,7 +10230,7 @@ var hasRequiredIsArrayLikeObject;
10049
10230
  function requireIsArrayLikeObject () {
10050
10231
  if (hasRequiredIsArrayLikeObject) return isArrayLikeObject_1;
10051
10232
  hasRequiredIsArrayLikeObject = 1;
10052
- var isArrayLike = isArrayLike_1,
10233
+ var isArrayLike = requireIsArrayLike(),
10053
10234
  isObjectLike = isObjectLike_1;
10054
10235
 
10055
10236
  /**
@@ -10164,16 +10345,16 @@ function require_baseMergeDeep () {
10164
10345
  if (hasRequired_baseMergeDeep) return _baseMergeDeep;
10165
10346
  hasRequired_baseMergeDeep = 1;
10166
10347
  var assignMergeValue = require_assignMergeValue(),
10167
- cloneBuffer = _cloneBufferExports,
10348
+ cloneBuffer = require_cloneBuffer(),
10168
10349
  cloneTypedArray = require_cloneTypedArray(),
10169
10350
  copyArray = _copyArray,
10170
- initCloneObject = _initCloneObject,
10351
+ initCloneObject = require_initCloneObject(),
10171
10352
  isArguments = requireIsArguments(),
10172
10353
  isArray = isArray_1,
10173
10354
  isArrayLikeObject = requireIsArrayLikeObject(),
10174
- isBuffer = isBufferExports,
10355
+ isBuffer = requireIsBuffer(),
10175
10356
  isFunction = isFunction_1,
10176
- isObject = isObject_1,
10357
+ isObject = requireIsObject(),
10177
10358
  isPlainObject = isPlainObject_1,
10178
10359
  isTypedArray = requireIsTypedArray(),
10179
10360
  safeGet = require_safeGet(),
@@ -10270,7 +10451,7 @@ function require_baseMerge () {
10270
10451
  assignMergeValue = require_assignMergeValue(),
10271
10452
  baseFor = require_baseFor(),
10272
10453
  baseMergeDeep = require_baseMergeDeep(),
10273
- isObject = isObject_1,
10454
+ isObject = requireIsObject(),
10274
10455
  keysIn = requireKeysIn(),
10275
10456
  safeGet = require_safeGet();
10276
10457
 
@@ -10317,9 +10498,9 @@ var hasRequired_baseRest;
10317
10498
  function require_baseRest () {
10318
10499
  if (hasRequired_baseRest) return _baseRest;
10319
10500
  hasRequired_baseRest = 1;
10320
- var identity = identity_1,
10321
- overRest = _overRest,
10322
- setToString = _setToString;
10501
+ var identity = requireIdentity(),
10502
+ overRest = require_overRest(),
10503
+ setToString = require_setToString();
10323
10504
 
10324
10505
  /**
10325
10506
  * The base implementation of `_.rest` which doesn't validate or coerce arguments.
@@ -10344,9 +10525,9 @@ function require_isIterateeCall () {
10344
10525
  if (hasRequired_isIterateeCall) return _isIterateeCall;
10345
10526
  hasRequired_isIterateeCall = 1;
10346
10527
  var eq = requireEq(),
10347
- isArrayLike = isArrayLike_1,
10348
- isIndex = _isIndex,
10349
- isObject = isObject_1;
10528
+ isArrayLike = requireIsArrayLike(),
10529
+ isIndex = require_isIndex(),
10530
+ isObject = requireIsObject();
10350
10531
 
10351
10532
  /**
10352
10533
  * Checks if the given arguments are from an iteratee call.
@@ -37953,7 +38134,7 @@ var __objRest$g = (source, exclude) => {
37953
38134
  };
37954
38135
  const useListRateShoppers = (params) => {
37955
38136
  const { client } = useShipEngine();
37956
- const _a = params, { queryFnParams } = _a, rest = __objRest$g(_a, ["queryFnParams"]);
38137
+ const _a = __spreadValues$l({}, params), { queryFnParams } = _a, rest = __objRest$g(_a, ["queryFnParams"]);
37957
38138
  return reactQuery.useQuery(__spreadProps$i(__spreadValues$l({}, rest), {
37958
38139
  onError,
37959
38140
  queryFn: () => client.rateShoppers.list(queryFnParams),