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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/index.js +570 -751
  2. package/index.mjs +570 -751
  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$a = {}.hasOwnProperty;
2291
+ var hasOwnProperty$b = {}.hasOwnProperty;
2292
2292
 
2293
2293
  var EmotionCacheContext = /* #__PURE__ */React.createContext( // we're doing this to avoid preconstruct's dead code elimination in this one case
2294
2294
  // because this module is primarily intended for the browser and node
@@ -2375,7 +2375,7 @@ var createEmotionProps = function createEmotionProps(type, props) {
2375
2375
  var newProps = {};
2376
2376
 
2377
2377
  for (var key in props) {
2378
- if (hasOwnProperty$a.call(props, key)) {
2378
+ if (hasOwnProperty$b.call(props, key)) {
2379
2379
  newProps[key] = props[key];
2380
2380
  }
2381
2381
  }
@@ -2436,7 +2436,7 @@ var Emotion = /* #__PURE__ */withEmotionCache(function (props, cache, ref) {
2436
2436
  var newProps = {};
2437
2437
 
2438
2438
  for (var key in props) {
2439
- if (hasOwnProperty$a.call(props, key) && key !== 'css' && key !== typePropName && (process.env.NODE_ENV === 'production' || key !== labelPropName)) {
2439
+ if (hasOwnProperty$b.call(props, key) && key !== 'css' && key !== typePropName && (process.env.NODE_ENV === 'production' || key !== labelPropName)) {
2440
2440
  newProps[key] = props[key];
2441
2441
  }
2442
2442
  }
@@ -2455,7 +2455,7 @@ if (process.env.NODE_ENV !== 'production') {
2455
2455
  }
2456
2456
 
2457
2457
  function jsx(type, props, key) {
2458
- if (!hasOwnProperty$a.call(props, 'css')) {
2458
+ if (!hasOwnProperty$b.call(props, 'css')) {
2459
2459
  return jsxRuntime.jsx(type, props, key);
2460
2460
  }
2461
2461
 
@@ -3435,20 +3435,12 @@ var _baseConvert = baseConvert$1;
3435
3435
  * // => true
3436
3436
  */
3437
3437
 
3438
- var identity_1;
3439
- var hasRequiredIdentity;
3440
-
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;
3438
+ function identity$3(value) {
3439
+ return value;
3450
3440
  }
3451
3441
 
3442
+ var identity_1 = identity$3;
3443
+
3452
3444
  /** Detect free variable `global` from Node.js. */
3453
3445
 
3454
3446
  var freeGlobal$1 = typeof commonjsGlobal == 'object' && commonjsGlobal && commonjsGlobal.Object === Object && commonjsGlobal;
@@ -3461,31 +3453,31 @@ var freeGlobal = _freeGlobal;
3461
3453
  var freeSelf = typeof self == 'object' && self && self.Object === Object && self;
3462
3454
 
3463
3455
  /** Used as a reference to the global object. */
3464
- var root$b = freeGlobal || freeSelf || Function('return this')();
3456
+ var root$c = freeGlobal || freeSelf || Function('return this')();
3465
3457
 
3466
- var _root = root$b;
3458
+ var _root = root$c;
3467
3459
 
3468
- var root$a = _root;
3460
+ var root$b = _root;
3469
3461
 
3470
3462
  /** Built-in value references. */
3471
- var Symbol$7 = root$a.Symbol;
3463
+ var Symbol$7 = root$b.Symbol;
3472
3464
 
3473
3465
  var _Symbol = Symbol$7;
3474
3466
 
3475
3467
  var Symbol$6 = _Symbol;
3476
3468
 
3477
3469
  /** Used for built-in method references. */
3478
- var objectProto$c = Object.prototype;
3470
+ var objectProto$d = Object.prototype;
3479
3471
 
3480
3472
  /** Used to check objects for own properties. */
3481
- var hasOwnProperty$9 = objectProto$c.hasOwnProperty;
3473
+ var hasOwnProperty$a = objectProto$d.hasOwnProperty;
3482
3474
 
3483
3475
  /**
3484
3476
  * Used to resolve the
3485
3477
  * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)
3486
3478
  * of values.
3487
3479
  */
3488
- var nativeObjectToString$1 = objectProto$c.toString;
3480
+ var nativeObjectToString$1 = objectProto$d.toString;
3489
3481
 
3490
3482
  /** Built-in value references. */
3491
3483
  var symToStringTag$1 = Symbol$6 ? Symbol$6.toStringTag : undefined;
@@ -3498,7 +3490,7 @@ var symToStringTag$1 = Symbol$6 ? Symbol$6.toStringTag : undefined;
3498
3490
  * @returns {string} Returns the raw `toStringTag`.
3499
3491
  */
3500
3492
  function getRawTag$1(value) {
3501
- var isOwn = hasOwnProperty$9.call(value, symToStringTag$1),
3493
+ var isOwn = hasOwnProperty$a.call(value, symToStringTag$1),
3502
3494
  tag = value[symToStringTag$1];
3503
3495
 
3504
3496
  try {
@@ -3521,14 +3513,14 @@ var _getRawTag = getRawTag$1;
3521
3513
 
3522
3514
  /** Used for built-in method references. */
3523
3515
 
3524
- var objectProto$b = Object.prototype;
3516
+ var objectProto$c = Object.prototype;
3525
3517
 
3526
3518
  /**
3527
3519
  * Used to resolve the
3528
3520
  * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)
3529
3521
  * of values.
3530
3522
  */
3531
- var nativeObjectToString = objectProto$b.toString;
3523
+ var nativeObjectToString = objectProto$c.toString;
3532
3524
 
3533
3525
  /**
3534
3526
  * Converts `value` to a string using `Object.prototype.toString`.
@@ -3598,23 +3590,15 @@ var _baseGetTag = baseGetTag$5;
3598
3590
  * // => false
3599
3591
  */
3600
3592
 
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
- }
3611
-
3612
- isObject_1 = isObject;
3613
- return isObject_1;
3593
+ function isObject$8(value) {
3594
+ var type = typeof value;
3595
+ return value != null && (type == 'object' || type == 'function');
3614
3596
  }
3615
3597
 
3598
+ var isObject_1 = isObject$8;
3599
+
3616
3600
  var baseGetTag$4 = _baseGetTag,
3617
- isObject$6 = requireIsObject();
3601
+ isObject$7 = isObject_1;
3618
3602
 
3619
3603
  /** `Object#toString` result references. */
3620
3604
  var asyncTag = '[object AsyncFunction]',
@@ -3639,8 +3623,8 @@ var asyncTag = '[object AsyncFunction]',
3639
3623
  * _.isFunction(/abc/);
3640
3624
  * // => false
3641
3625
  */
3642
- function isFunction$2(value) {
3643
- if (!isObject$6(value)) {
3626
+ function isFunction$3(value) {
3627
+ if (!isObject$7(value)) {
3644
3628
  return false;
3645
3629
  }
3646
3630
  // The use of `Object#toString` avoids issues with the `typeof` operator
@@ -3649,12 +3633,12 @@ function isFunction$2(value) {
3649
3633
  return tag == funcTag$1 || tag == genTag$1 || tag == asyncTag || tag == proxyTag;
3650
3634
  }
3651
3635
 
3652
- var isFunction_1 = isFunction$2;
3636
+ var isFunction_1 = isFunction$3;
3653
3637
 
3654
- var root$9 = _root;
3638
+ var root$a = _root;
3655
3639
 
3656
3640
  /** Used to detect overreaching core-js shims. */
3657
- var coreJsData$1 = root$9['__core-js_shared__'];
3641
+ var coreJsData$1 = root$a['__core-js_shared__'];
3658
3642
 
3659
3643
  var _coreJsData = coreJsData$1;
3660
3644
 
@@ -3707,9 +3691,9 @@ function toSource$2(func) {
3707
3691
 
3708
3692
  var _toSource = toSource$2;
3709
3693
 
3710
- var isFunction$1 = isFunction_1,
3694
+ var isFunction$2 = isFunction_1,
3711
3695
  isMasked = _isMasked,
3712
- isObject$5 = requireIsObject(),
3696
+ isObject$6 = isObject_1,
3713
3697
  toSource$1 = _toSource;
3714
3698
 
3715
3699
  /**
@@ -3723,17 +3707,17 @@ var reIsHostCtor = /^\[object .+?Constructor\]$/;
3723
3707
 
3724
3708
  /** Used for built-in method references. */
3725
3709
  var funcProto$1 = Function.prototype,
3726
- objectProto$a = Object.prototype;
3710
+ objectProto$b = Object.prototype;
3727
3711
 
3728
3712
  /** Used to resolve the decompiled source of functions. */
3729
3713
  var funcToString$1 = funcProto$1.toString;
3730
3714
 
3731
3715
  /** Used to check objects for own properties. */
3732
- var hasOwnProperty$8 = objectProto$a.hasOwnProperty;
3716
+ var hasOwnProperty$9 = objectProto$b.hasOwnProperty;
3733
3717
 
3734
3718
  /** Used to detect if a method is native. */
3735
3719
  var reIsNative = RegExp('^' +
3736
- funcToString$1.call(hasOwnProperty$8).replace(reRegExpChar, '\\$&')
3720
+ funcToString$1.call(hasOwnProperty$9).replace(reRegExpChar, '\\$&')
3737
3721
  .replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, '$1.*?') + '$'
3738
3722
  );
3739
3723
 
@@ -3746,10 +3730,10 @@ var reIsNative = RegExp('^' +
3746
3730
  * else `false`.
3747
3731
  */
3748
3732
  function baseIsNative$1(value) {
3749
- if (!isObject$5(value) || isMasked(value)) {
3733
+ if (!isObject$6(value) || isMasked(value)) {
3750
3734
  return false;
3751
3735
  }
3752
- var pattern = isFunction$1(value) ? reIsNative : reIsHostCtor;
3736
+ var pattern = isFunction$2(value) ? reIsNative : reIsHostCtor;
3753
3737
  return pattern.test(toSource$1(value));
3754
3738
  }
3755
3739
 
@@ -3781,18 +3765,18 @@ var baseIsNative = _baseIsNative,
3781
3765
  * @param {string} key The key of the method to get.
3782
3766
  * @returns {*} Returns the function if it's native, else `undefined`.
3783
3767
  */
3784
- function getNative$5(object, key) {
3768
+ function getNative$6(object, key) {
3785
3769
  var value = getValue(object, key);
3786
3770
  return baseIsNative(value) ? value : undefined;
3787
3771
  }
3788
3772
 
3789
- var _getNative = getNative$5;
3773
+ var _getNative = getNative$6;
3790
3774
 
3791
- var getNative$4 = _getNative,
3792
- root$8 = _root;
3775
+ var getNative$5 = _getNative,
3776
+ root$9 = _root;
3793
3777
 
3794
3778
  /* Built-in method references that are verified to be native. */
3795
- var WeakMap$3 = getNative$4(root$8, 'WeakMap');
3779
+ var WeakMap$3 = getNative$5(root$9, 'WeakMap');
3796
3780
 
3797
3781
  var _WeakMap = WeakMap$3;
3798
3782
 
@@ -3803,7 +3787,7 @@ var metaMap$2 = WeakMap$2 && new WeakMap$2;
3803
3787
 
3804
3788
  var _metaMap = metaMap$2;
3805
3789
 
3806
- var identity$1 = requireIdentity(),
3790
+ var identity$2 = identity_1,
3807
3791
  metaMap$1 = _metaMap;
3808
3792
 
3809
3793
  /**
@@ -3814,54 +3798,46 @@ var identity$1 = requireIdentity(),
3814
3798
  * @param {*} data The metadata.
3815
3799
  * @returns {Function} Returns `func`.
3816
3800
  */
3817
- var baseSetData$2 = !metaMap$1 ? identity$1 : function(func, data) {
3801
+ var baseSetData$2 = !metaMap$1 ? identity$2 : function(func, data) {
3818
3802
  metaMap$1.set(func, data);
3819
3803
  return func;
3820
3804
  };
3821
3805
 
3822
3806
  var _baseSetData = baseSetData$2;
3823
3807
 
3824
- var _baseCreate;
3825
- var hasRequired_baseCreate;
3826
-
3827
- function require_baseCreate () {
3828
- if (hasRequired_baseCreate) return _baseCreate;
3829
- hasRequired_baseCreate = 1;
3830
- var isObject = requireIsObject();
3808
+ var isObject$5 = isObject_1;
3831
3809
 
3832
- /** Built-in value references. */
3833
- var objectCreate = Object.create;
3810
+ /** Built-in value references. */
3811
+ var objectCreate = Object.create;
3834
3812
 
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
- }());
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
+ }());
3858
3836
 
3859
- _baseCreate = baseCreate;
3860
- return _baseCreate;
3861
- }
3837
+ var _baseCreate = baseCreate$4;
3862
3838
 
3863
- var baseCreate$2 = require_baseCreate(),
3864
- isObject$4 = requireIsObject();
3839
+ var baseCreate$3 = _baseCreate,
3840
+ isObject$4 = isObject_1;
3865
3841
 
3866
3842
  /**
3867
3843
  * Creates a function that produces an instance of `Ctor` regardless of
@@ -3887,7 +3863,7 @@ function createCtor$4(Ctor) {
3887
3863
  case 6: return new Ctor(args[0], args[1], args[2], args[3], args[4], args[5]);
3888
3864
  case 7: return new Ctor(args[0], args[1], args[2], args[3], args[4], args[5], args[6]);
3889
3865
  }
3890
- var thisBinding = baseCreate$2(Ctor.prototype),
3866
+ var thisBinding = baseCreate$3(Ctor.prototype),
3891
3867
  result = Ctor.apply(thisBinding, args);
3892
3868
 
3893
3869
  // Mimic the constructor's `return` behavior.
@@ -3899,7 +3875,7 @@ function createCtor$4(Ctor) {
3899
3875
  var _createCtor = createCtor$4;
3900
3876
 
3901
3877
  var createCtor$3 = _createCtor,
3902
- root$7 = _root;
3878
+ root$8 = _root;
3903
3879
 
3904
3880
  /** Used to compose bitmasks for function metadata. */
3905
3881
  var WRAP_BIND_FLAG$6 = 1;
@@ -3919,7 +3895,7 @@ function createBind$1(func, bitmask, thisArg) {
3919
3895
  Ctor = createCtor$3(func);
3920
3896
 
3921
3897
  function wrapper() {
3922
- var fn = (this && this !== root$7 && this instanceof wrapper) ? Ctor : func;
3898
+ var fn = (this && this !== root$8 && this instanceof wrapper) ? Ctor : func;
3923
3899
  return fn.apply(isBind ? thisArg : this, arguments);
3924
3900
  }
3925
3901
  return wrapper;
@@ -3938,7 +3914,7 @@ var _createBind = createBind$1;
3938
3914
  * @returns {*} Returns the result of `func`.
3939
3915
  */
3940
3916
 
3941
- function apply$2(func, thisArg, args) {
3917
+ function apply$3(func, thisArg, args) {
3942
3918
  switch (args.length) {
3943
3919
  case 0: return func.call(thisArg);
3944
3920
  case 1: return func.call(thisArg, args[0]);
@@ -3948,11 +3924,11 @@ function apply$2(func, thisArg, args) {
3948
3924
  return func.apply(thisArg, args);
3949
3925
  }
3950
3926
 
3951
- var _apply = apply$2;
3927
+ var _apply = apply$3;
3952
3928
 
3953
3929
  /* Built-in method references for those with the same name as other `lodash` methods. */
3954
3930
 
3955
- var nativeMax$2 = Math.max;
3931
+ var nativeMax$3 = Math.max;
3956
3932
 
3957
3933
  /**
3958
3934
  * Creates an array that is the composition of partially applied arguments,
@@ -3971,7 +3947,7 @@ function composeArgs$2(args, partials, holders, isCurried) {
3971
3947
  holdersLength = holders.length,
3972
3948
  leftIndex = -1,
3973
3949
  leftLength = partials.length,
3974
- rangeLength = nativeMax$2(argsLength - holdersLength, 0),
3950
+ rangeLength = nativeMax$3(argsLength - holdersLength, 0),
3975
3951
  result = Array(leftLength + rangeLength),
3976
3952
  isUncurried = !isCurried;
3977
3953
 
@@ -3993,7 +3969,7 @@ var _composeArgs = composeArgs$2;
3993
3969
 
3994
3970
  /* Built-in method references for those with the same name as other `lodash` methods. */
3995
3971
 
3996
- var nativeMax$1 = Math.max;
3972
+ var nativeMax$2 = Math.max;
3997
3973
 
3998
3974
  /**
3999
3975
  * This function is like `composeArgs` except that the arguments composition
@@ -4013,7 +3989,7 @@ function composeArgsRight$2(args, partials, holders, isCurried) {
4013
3989
  holdersLength = holders.length,
4014
3990
  rightIndex = -1,
4015
3991
  rightLength = partials.length,
4016
- rangeLength = nativeMax$1(argsLength - holdersLength, 0),
3992
+ rangeLength = nativeMax$2(argsLength - holdersLength, 0),
4017
3993
  result = Array(rangeLength + rightLength),
4018
3994
  isUncurried = !isCurried;
4019
3995
 
@@ -4069,7 +4045,7 @@ function baseLodash$3() {
4069
4045
 
4070
4046
  var _baseLodash = baseLodash$3;
4071
4047
 
4072
- var baseCreate$1 = require_baseCreate(),
4048
+ var baseCreate$2 = _baseCreate,
4073
4049
  baseLodash$2 = _baseLodash;
4074
4050
 
4075
4051
  /** Used as references for the maximum length and index of an array. */
@@ -4093,7 +4069,7 @@ function LazyWrapper$3(value) {
4093
4069
  }
4094
4070
 
4095
4071
  // Ensure `LazyWrapper` is an instance of `baseLodash`.
4096
- LazyWrapper$3.prototype = baseCreate$1(baseLodash$2.prototype);
4072
+ LazyWrapper$3.prototype = baseCreate$2(baseLodash$2.prototype);
4097
4073
  LazyWrapper$3.prototype.constructor = LazyWrapper$3;
4098
4074
 
4099
4075
  var _LazyWrapper = LazyWrapper$3;
@@ -4142,10 +4118,10 @@ var _realNames = realNames$1;
4142
4118
  var realNames = _realNames;
4143
4119
 
4144
4120
  /** Used for built-in method references. */
4145
- var objectProto$9 = Object.prototype;
4121
+ var objectProto$a = Object.prototype;
4146
4122
 
4147
4123
  /** Used to check objects for own properties. */
4148
- var hasOwnProperty$7 = objectProto$9.hasOwnProperty;
4124
+ var hasOwnProperty$8 = objectProto$a.hasOwnProperty;
4149
4125
 
4150
4126
  /**
4151
4127
  * Gets the name of `func`.
@@ -4157,7 +4133,7 @@ var hasOwnProperty$7 = objectProto$9.hasOwnProperty;
4157
4133
  function getFuncName$1(func) {
4158
4134
  var result = (func.name + ''),
4159
4135
  array = realNames[result],
4160
- length = hasOwnProperty$7.call(realNames, result) ? array.length : 0;
4136
+ length = hasOwnProperty$8.call(realNames, result) ? array.length : 0;
4161
4137
 
4162
4138
  while (length--) {
4163
4139
  var data = array[length],
@@ -4171,7 +4147,7 @@ function getFuncName$1(func) {
4171
4147
 
4172
4148
  var _getFuncName = getFuncName$1;
4173
4149
 
4174
- var baseCreate = require_baseCreate(),
4150
+ var baseCreate$1 = _baseCreate,
4175
4151
  baseLodash$1 = _baseLodash;
4176
4152
 
4177
4153
  /**
@@ -4189,7 +4165,7 @@ function LodashWrapper$2(value, chainAll) {
4189
4165
  this.__values__ = undefined;
4190
4166
  }
4191
4167
 
4192
- LodashWrapper$2.prototype = baseCreate(baseLodash$1.prototype);
4168
+ LodashWrapper$2.prototype = baseCreate$1(baseLodash$1.prototype);
4193
4169
  LodashWrapper$2.prototype.constructor = LodashWrapper$2;
4194
4170
 
4195
4171
  var _LodashWrapper = LodashWrapper$2;
@@ -4218,9 +4194,9 @@ var _LodashWrapper = LodashWrapper$2;
4218
4194
  * // => false
4219
4195
  */
4220
4196
 
4221
- var isArray$g = Array.isArray;
4197
+ var isArray$h = Array.isArray;
4222
4198
 
4223
- var isArray_1 = isArray$g;
4199
+ var isArray_1 = isArray$h;
4224
4200
 
4225
4201
  /**
4226
4202
  * Checks if `value` is object-like. A value is object-like if it's not `null`
@@ -4302,15 +4278,15 @@ var _wrapperClone = wrapperClone$1;
4302
4278
  var LazyWrapper$1 = _LazyWrapper,
4303
4279
  LodashWrapper = _LodashWrapper,
4304
4280
  baseLodash = _baseLodash,
4305
- isArray$f = isArray_1,
4281
+ isArray$g = isArray_1,
4306
4282
  isObjectLike$7 = isObjectLike_1,
4307
4283
  wrapperClone = _wrapperClone;
4308
4284
 
4309
4285
  /** Used for built-in method references. */
4310
- var objectProto$8 = Object.prototype;
4286
+ var objectProto$9 = Object.prototype;
4311
4287
 
4312
4288
  /** Used to check objects for own properties. */
4313
- var hasOwnProperty$6 = objectProto$8.hasOwnProperty;
4289
+ var hasOwnProperty$7 = objectProto$9.hasOwnProperty;
4314
4290
 
4315
4291
  /**
4316
4292
  * Creates a `lodash` object which wraps `value` to enable implicit method
@@ -4430,11 +4406,11 @@ var hasOwnProperty$6 = objectProto$8.hasOwnProperty;
4430
4406
  * // => true
4431
4407
  */
4432
4408
  function lodash$2(value) {
4433
- if (isObjectLike$7(value) && !isArray$f(value) && !(value instanceof LazyWrapper$1)) {
4409
+ if (isObjectLike$7(value) && !isArray$g(value) && !(value instanceof LazyWrapper$1)) {
4434
4410
  if (value instanceof LodashWrapper) {
4435
4411
  return value;
4436
4412
  }
4437
- if (hasOwnProperty$6.call(value, '__wrapped__')) {
4413
+ if (hasOwnProperty$7.call(value, '__wrapped__')) {
4438
4414
  return wrapperClone(value);
4439
4415
  }
4440
4416
  }
@@ -4478,53 +4454,45 @@ var _isLaziable = isLaziable$1;
4478
4454
 
4479
4455
  /** Used to detect hot functions by number of calls within a span of milliseconds. */
4480
4456
 
4481
- var _shortOut;
4482
- var hasRequired_shortOut;
4483
-
4484
- function require_shortOut () {
4485
- if (hasRequired_shortOut) return _shortOut;
4486
- hasRequired_shortOut = 1;
4487
- var HOT_COUNT = 800,
4488
- HOT_SPAN = 16;
4457
+ var HOT_COUNT = 800,
4458
+ HOT_SPAN = 16;
4489
4459
 
4490
- /* Built-in method references for those with the same name as other `lodash` methods. */
4491
- var nativeNow = Date.now;
4492
-
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;
4460
+ /* Built-in method references for those with the same name as other `lodash` methods. */
4461
+ var nativeNow = Date.now;
4505
4462
 
4506
- return function() {
4507
- var stamp = nativeNow(),
4508
- remaining = HOT_SPAN - (stamp - lastCalled);
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;
4509
4475
 
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
- }
4476
+ return function() {
4477
+ var stamp = nativeNow(),
4478
+ remaining = HOT_SPAN - (stamp - lastCalled);
4521
4479
 
4522
- _shortOut = shortOut;
4523
- return _shortOut;
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
+ };
4524
4490
  }
4525
4491
 
4492
+ var _shortOut = shortOut$2;
4493
+
4526
4494
  var baseSetData$1 = _baseSetData,
4527
- shortOut = require_shortOut();
4495
+ shortOut$1 = _shortOut;
4528
4496
 
4529
4497
  /**
4530
4498
  * Sets metadata for `func`.
@@ -4540,7 +4508,7 @@ var baseSetData$1 = _baseSetData,
4540
4508
  * @param {*} data The metadata.
4541
4509
  * @returns {Function} Returns `func`.
4542
4510
  */
4543
- var setData$2 = shortOut(baseSetData$1);
4511
+ var setData$2 = shortOut$1(baseSetData$1);
4544
4512
 
4545
4513
  var _setData = setData$2;
4546
4514
 
@@ -4608,95 +4576,63 @@ var _insertWrapDetails = insertWrapDetails$1;
4608
4576
  * // => true
4609
4577
  */
4610
4578
 
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;
4579
+ function constant$1(value) {
4580
+ return function() {
4581
+ return value;
4582
+ };
4625
4583
  }
4626
4584
 
4627
- var _defineProperty;
4628
- var hasRequired_defineProperty;
4585
+ var constant_1 = constant$1;
4629
4586
 
4630
- function require_defineProperty () {
4631
- if (hasRequired_defineProperty) return _defineProperty;
4632
- hasRequired_defineProperty = 1;
4633
- var getNative = _getNative;
4634
-
4635
- var defineProperty = (function() {
4636
- try {
4637
- var func = getNative(Object, 'defineProperty');
4638
- func({}, '', {});
4639
- return func;
4640
- } catch (e) {}
4641
- }());
4587
+ var getNative$4 = _getNative;
4642
4588
 
4643
- _defineProperty = defineProperty;
4644
- return _defineProperty;
4645
- }
4646
-
4647
- var _baseSetToString;
4648
- var hasRequired_baseSetToString;
4589
+ var defineProperty$2 = (function() {
4590
+ try {
4591
+ var func = getNative$4(Object, 'defineProperty');
4592
+ func({}, '', {});
4593
+ return func;
4594
+ } catch (e) {}
4595
+ }());
4649
4596
 
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();
4597
+ var _defineProperty = defineProperty$2;
4656
4598
 
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
- };
4599
+ var constant = constant_1,
4600
+ defineProperty$1 = _defineProperty,
4601
+ identity$1 = identity_1;
4673
4602
 
4674
- _baseSetToString = baseSetToString;
4675
- return _baseSetToString;
4676
- }
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
+ };
4677
4619
 
4678
- var _setToString;
4679
- var hasRequired_setToString;
4620
+ var _baseSetToString = baseSetToString$1;
4680
4621
 
4681
- function require_setToString () {
4682
- if (hasRequired_setToString) return _setToString;
4683
- hasRequired_setToString = 1;
4684
- var baseSetToString = require_baseSetToString(),
4685
- shortOut = require_shortOut();
4622
+ var baseSetToString = _baseSetToString,
4623
+ shortOut = _shortOut;
4686
4624
 
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);
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);
4696
4634
 
4697
- _setToString = setToString;
4698
- return _setToString;
4699
- }
4635
+ var _setToString = setToString$2;
4700
4636
 
4701
4637
  /**
4702
4638
  * A specialized version of `_.forEach` for arrays without support for
@@ -4875,7 +4811,7 @@ var _updateWrapDetails = updateWrapDetails$1;
4875
4811
 
4876
4812
  var getWrapDetails = _getWrapDetails,
4877
4813
  insertWrapDetails = _insertWrapDetails,
4878
- setToString$1 = require_setToString(),
4814
+ setToString$1 = _setToString,
4879
4815
  updateWrapDetails = _updateWrapDetails;
4880
4816
 
4881
4817
  /**
@@ -4969,41 +4905,33 @@ var _getHolder = getHolder$2;
4969
4905
 
4970
4906
  /** Used as references for various `Number` constants. */
4971
4907
 
4972
- var _isIndex;
4973
- var hasRequired_isIndex;
4908
+ var MAX_SAFE_INTEGER$1 = 9007199254740991;
4974
4909
 
4975
- function require_isIndex () {
4976
- if (hasRequired_isIndex) return _isIndex;
4977
- hasRequired_isIndex = 1;
4978
- var MAX_SAFE_INTEGER = 9007199254740991;
4910
+ /** Used to detect unsigned integer values. */
4911
+ var reIsUint = /^(?:0|[1-9]\d*)$/;
4979
4912
 
4980
- /** Used to detect unsigned integer values. */
4981
- var reIsUint = /^(?:0|[1-9]\d*)$/;
4982
-
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;
4994
-
4995
- return !!length &&
4996
- (type == 'number' ||
4997
- (type != 'symbol' && reIsUint.test(value))) &&
4998
- (value > -1 && value % 1 == 0 && value < length);
4999
- }
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;
5000
4924
 
5001
- _isIndex = isIndex;
5002
- return _isIndex;
4925
+ return !!length &&
4926
+ (type == 'number' ||
4927
+ (type != 'symbol' && reIsUint.test(value))) &&
4928
+ (value > -1 && value % 1 == 0 && value < length);
5003
4929
  }
5004
4930
 
4931
+ var _isIndex = isIndex$3;
4932
+
5005
4933
  var copyArray$2 = _copyArray,
5006
- isIndex$1 = require_isIndex();
4934
+ isIndex$2 = _isIndex;
5007
4935
 
5008
4936
  /* Built-in method references for those with the same name as other `lodash` methods. */
5009
4937
  var nativeMin$1 = Math.min;
@@ -5025,7 +4953,7 @@ function reorder$1(array, indexes) {
5025
4953
 
5026
4954
  while (length--) {
5027
4955
  var index = indexes[length];
5028
- array[length] = isIndex$1(index, arrLength) ? oldArray[index] : undefined;
4956
+ array[length] = isIndex$2(index, arrLength) ? oldArray[index] : undefined;
5029
4957
  }
5030
4958
  return array;
5031
4959
  }
@@ -5071,7 +4999,7 @@ var composeArgs$1 = _composeArgs,
5071
4999
  getHolder$1 = _getHolder,
5072
5000
  reorder = _reorder,
5073
5001
  replaceHolders$2 = _replaceHolders,
5074
- root$6 = _root;
5002
+ root$7 = _root;
5075
5003
 
5076
5004
  /** Used to compose bitmasks for function metadata. */
5077
5005
  var WRAP_BIND_FLAG$3 = 1,
@@ -5146,7 +5074,7 @@ function createHybrid$2(func, bitmask, thisArg, partials, holders, partialsRight
5146
5074
  if (isAry && ary < length) {
5147
5075
  args.length = ary;
5148
5076
  }
5149
- if (this && this !== root$6 && this instanceof wrapper) {
5077
+ if (this && this !== root$7 && this instanceof wrapper) {
5150
5078
  fn = Ctor || createCtor$2(fn);
5151
5079
  }
5152
5080
  return fn.apply(thisBinding, args);
@@ -5156,13 +5084,13 @@ function createHybrid$2(func, bitmask, thisArg, partials, holders, partialsRight
5156
5084
 
5157
5085
  var _createHybrid = createHybrid$2;
5158
5086
 
5159
- var apply$1 = _apply,
5087
+ var apply$2 = _apply,
5160
5088
  createCtor$1 = _createCtor,
5161
5089
  createHybrid$1 = _createHybrid,
5162
5090
  createRecurry = _createRecurry,
5163
5091
  getHolder = _getHolder,
5164
5092
  replaceHolders$1 = _replaceHolders,
5165
- root$5 = _root;
5093
+ root$6 = _root;
5166
5094
 
5167
5095
  /**
5168
5096
  * Creates a function that wraps `func` to enable currying.
@@ -5195,17 +5123,17 @@ function createCurry$1(func, bitmask, arity) {
5195
5123
  func, bitmask, createHybrid$1, wrapper.placeholder, undefined,
5196
5124
  args, holders, undefined, undefined, arity - length);
5197
5125
  }
5198
- var fn = (this && this !== root$5 && this instanceof wrapper) ? Ctor : func;
5199
- return apply$1(fn, this, args);
5126
+ var fn = (this && this !== root$6 && this instanceof wrapper) ? Ctor : func;
5127
+ return apply$2(fn, this, args);
5200
5128
  }
5201
5129
  return wrapper;
5202
5130
  }
5203
5131
 
5204
5132
  var _createCurry = createCurry$1;
5205
5133
 
5206
- var apply = _apply,
5134
+ var apply$1 = _apply,
5207
5135
  createCtor = _createCtor,
5208
- root$4 = _root;
5136
+ root$5 = _root;
5209
5137
 
5210
5138
  /** Used to compose bitmasks for function metadata. */
5211
5139
  var WRAP_BIND_FLAG$2 = 1;
@@ -5232,7 +5160,7 @@ function createPartial$1(func, bitmask, thisArg, partials) {
5232
5160
  leftIndex = -1,
5233
5161
  leftLength = partials.length,
5234
5162
  args = Array(leftLength + argsLength),
5235
- fn = (this && this !== root$4 && this instanceof wrapper) ? Ctor : func;
5163
+ fn = (this && this !== root$5 && this instanceof wrapper) ? Ctor : func;
5236
5164
 
5237
5165
  while (++leftIndex < leftLength) {
5238
5166
  args[leftIndex] = partials[leftIndex];
@@ -5240,7 +5168,7 @@ function createPartial$1(func, bitmask, thisArg, partials) {
5240
5168
  while (argsLength--) {
5241
5169
  args[leftIndex++] = arguments[++argsIndex];
5242
5170
  }
5243
- return apply(fn, isBind ? thisArg : this, args);
5171
+ return apply$1(fn, isBind ? thisArg : this, args);
5244
5172
  }
5245
5173
  return wrapper;
5246
5174
  }
@@ -5410,7 +5338,7 @@ function isSymbol$6(value) {
5410
5338
  var isSymbol_1 = isSymbol$6;
5411
5339
 
5412
5340
  var baseTrim = _baseTrim,
5413
- isObject$3 = requireIsObject(),
5341
+ isObject$3 = isObject_1,
5414
5342
  isSymbol$5 = isSymbol_1;
5415
5343
 
5416
5344
  /** Used as references for various `Number` constants. */
@@ -5577,7 +5505,7 @@ var WRAP_BIND_FLAG = 1,
5577
5505
  WRAP_PARTIAL_RIGHT_FLAG = 64;
5578
5506
 
5579
5507
  /* Built-in method references for those with the same name as other `lodash` methods. */
5580
- var nativeMax = Math.max;
5508
+ var nativeMax$1 = Math.max;
5581
5509
 
5582
5510
  /**
5583
5511
  * Creates a function that either curries or invokes `func` with optional
@@ -5614,7 +5542,7 @@ function createWrap$3(func, bitmask, thisArg, partials, holders, argPos, ary, ar
5614
5542
  bitmask &= ~(WRAP_PARTIAL_FLAG | WRAP_PARTIAL_RIGHT_FLAG);
5615
5543
  partials = holders = undefined;
5616
5544
  }
5617
- ary = ary === undefined ? ary : nativeMax(toInteger(ary), 0);
5545
+ ary = ary === undefined ? ary : nativeMax$1(toInteger(ary), 0);
5618
5546
  arity = arity === undefined ? arity : toInteger(arity);
5619
5547
  length -= holders ? holders.length : 0;
5620
5548
 
@@ -5641,7 +5569,7 @@ function createWrap$3(func, bitmask, thisArg, partials, holders, argPos, ary, ar
5641
5569
  holders = newData[4];
5642
5570
  arity = newData[9] = newData[9] === undefined
5643
5571
  ? (isBindKey ? 0 : func.length)
5644
- : nativeMax(newData[9] - length, 0);
5572
+ : nativeMax$1(newData[9] - length, 0);
5645
5573
 
5646
5574
  if (!arity && bitmask & (WRAP_CURRY_FLAG$1 | WRAP_CURRY_RIGHT_FLAG)) {
5647
5575
  bitmask &= ~(WRAP_CURRY_FLAG$1 | WRAP_CURRY_RIGHT_FLAG);
@@ -5691,40 +5619,32 @@ function ary(func, n, guard) {
5691
5619
 
5692
5620
  var ary_1 = ary;
5693
5621
 
5694
- var _baseAssignValue;
5695
- var hasRequired_baseAssignValue;
5696
-
5697
- function require_baseAssignValue () {
5698
- if (hasRequired_baseAssignValue) return _baseAssignValue;
5699
- hasRequired_baseAssignValue = 1;
5700
- var defineProperty = require_defineProperty();
5622
+ var defineProperty = _defineProperty;
5701
5623
 
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;
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
+ }
5726
5644
  }
5727
5645
 
5646
+ var _baseAssignValue = baseAssignValue$2;
5647
+
5728
5648
  /**
5729
5649
  * Performs a
5730
5650
  * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)
@@ -5772,14 +5692,14 @@ function requireEq () {
5772
5692
  return eq_1;
5773
5693
  }
5774
5694
 
5775
- var baseAssignValue$1 = require_baseAssignValue(),
5695
+ var baseAssignValue$1 = _baseAssignValue,
5776
5696
  eq$1 = requireEq();
5777
5697
 
5778
5698
  /** Used for built-in method references. */
5779
- var objectProto$7 = Object.prototype;
5699
+ var objectProto$8 = Object.prototype;
5780
5700
 
5781
5701
  /** Used to check objects for own properties. */
5782
- var hasOwnProperty$5 = objectProto$7.hasOwnProperty;
5702
+ var hasOwnProperty$6 = objectProto$8.hasOwnProperty;
5783
5703
 
5784
5704
  /**
5785
5705
  * Assigns `value` to `key` of `object` if the existing value is not equivalent
@@ -5793,7 +5713,7 @@ var hasOwnProperty$5 = objectProto$7.hasOwnProperty;
5793
5713
  */
5794
5714
  function assignValue$2(object, key, value) {
5795
5715
  var objValue = object[key];
5796
- if (!(hasOwnProperty$5.call(object, key) && eq$1(objValue, value)) ||
5716
+ if (!(hasOwnProperty$6.call(object, key) && eq$1(objValue, value)) ||
5797
5717
  (value === undefined && !(key in object))) {
5798
5718
  baseAssignValue$1(object, key, value);
5799
5719
  }
@@ -5802,7 +5722,7 @@ function assignValue$2(object, key, value) {
5802
5722
  var _assignValue = assignValue$2;
5803
5723
 
5804
5724
  var assignValue$1 = _assignValue,
5805
- baseAssignValue = require_baseAssignValue();
5725
+ baseAssignValue = _baseAssignValue;
5806
5726
 
5807
5727
  /**
5808
5728
  * Copies properties of `source` to `object`.
@@ -5852,26 +5772,18 @@ var _copyObject = copyObject$4;
5852
5772
  * @returns {Array} Returns the array of results.
5853
5773
  */
5854
5774
 
5855
- var _baseTimes;
5856
- var hasRequired_baseTimes;
5857
-
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
- }
5775
+ function baseTimes$1(n, iteratee) {
5776
+ var index = -1,
5777
+ result = Array(n);
5870
5778
 
5871
- _baseTimes = baseTimes;
5872
- return _baseTimes;
5779
+ while (++index < n) {
5780
+ result[index] = iteratee(index);
5781
+ }
5782
+ return result;
5873
5783
  }
5874
5784
 
5785
+ var _baseTimes = baseTimes$1;
5786
+
5875
5787
  var _baseIsArguments;
5876
5788
  var hasRequired_baseIsArguments;
5877
5789
 
@@ -5945,7 +5857,7 @@ function requireIsArguments () {
5945
5857
  }
5946
5858
 
5947
5859
  var isBufferExports = {};
5948
- var isBuffer$4 = {
5860
+ var isBuffer$5 = {
5949
5861
  get exports(){ return isBufferExports; },
5950
5862
  set exports(v){ isBufferExports = v; },
5951
5863
  };
@@ -5964,113 +5876,90 @@ var isBuffer$4 = {
5964
5876
  * // => [false, false]
5965
5877
  */
5966
5878
 
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;
5879
+ function stubFalse() {
5880
+ return false;
5979
5881
  }
5980
5882
 
5981
- var hasRequiredIsBuffer;
5982
-
5983
- function requireIsBuffer () {
5984
- if (hasRequiredIsBuffer) return isBufferExports;
5985
- hasRequiredIsBuffer = 1;
5986
- (function (module, exports) {
5987
- var root = _root,
5988
- stubFalse = requireStubFalse();
5989
-
5990
- /** Detect free variable `exports`. */
5991
- var freeExports = exports && !exports.nodeType && exports;
5992
-
5993
- /** Detect free variable `module`. */
5994
- var freeModule = freeExports && 'object' == 'object' && module && !module.nodeType && module;
5883
+ var stubFalse_1 = stubFalse;
5995
5884
 
5996
- /** Detect the popular CommonJS extension `module.exports`. */
5997
- var moduleExports = freeModule && freeModule.exports === freeExports;
5998
-
5999
- /** Built-in value references. */
6000
- var Buffer = moduleExports ? root.Buffer : undefined;
6001
-
6002
- /* Built-in method references for those with the same name as other `lodash` methods. */
6003
- var nativeIsBuffer = Buffer ? Buffer.isBuffer : undefined;
5885
+ (function (module, exports) {
5886
+ var root = _root,
5887
+ stubFalse = stubFalse_1;
6004
5888
 
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;
5889
+ /** Detect free variable `exports`. */
5890
+ var freeExports = exports && !exports.nodeType && exports;
6023
5891
 
6024
- module.exports = isBuffer;
6025
- } (isBuffer$4, isBufferExports));
6026
- return isBufferExports;
6027
- }
5892
+ /** Detect free variable `module`. */
5893
+ var freeModule = freeExports && 'object' == 'object' && module && !module.nodeType && module;
6028
5894
 
6029
- /** Used as references for various `Number` constants. */
5895
+ /** Detect the popular CommonJS extension `module.exports`. */
5896
+ var moduleExports = freeModule && freeModule.exports === freeExports;
6030
5897
 
6031
- var isLength_1;
6032
- var hasRequiredIsLength;
5898
+ /** Built-in value references. */
5899
+ var Buffer = moduleExports ? root.Buffer : undefined;
6033
5900
 
6034
- function requireIsLength () {
6035
- if (hasRequiredIsLength) return isLength_1;
6036
- hasRequiredIsLength = 1;
6037
- var MAX_SAFE_INTEGER = 9007199254740991;
5901
+ /* Built-in method references for those with the same name as other `lodash` methods. */
5902
+ var nativeIsBuffer = Buffer ? Buffer.isBuffer : undefined;
6038
5903
 
6039
5904
  /**
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).
5905
+ * Checks if `value` is a buffer.
6044
5906
  *
6045
5907
  * @static
6046
5908
  * @memberOf _
6047
- * @since 4.0.0
5909
+ * @since 4.3.0
6048
5910
  * @category Lang
6049
5911
  * @param {*} value The value to check.
6050
- * @returns {boolean} Returns `true` if `value` is a valid length, else `false`.
5912
+ * @returns {boolean} Returns `true` if `value` is a buffer, else `false`.
6051
5913
  * @example
6052
5914
  *
6053
- * _.isLength(3);
5915
+ * _.isBuffer(new Buffer(2));
6054
5916
  * // => true
6055
5917
  *
6056
- * _.isLength(Number.MIN_VALUE);
6057
- * // => false
6058
- *
6059
- * _.isLength(Infinity);
6060
- * // => false
6061
- *
6062
- * _.isLength('3');
5918
+ * _.isBuffer(new Uint8Array(2));
6063
5919
  * // => false
6064
5920
  */
6065
- function isLength(value) {
6066
- return typeof value == 'number' &&
6067
- value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER;
6068
- }
5921
+ var isBuffer = nativeIsBuffer || stubFalse;
6069
5922
 
6070
- isLength_1 = isLength;
6071
- return isLength_1;
5923
+ module.exports = isBuffer;
5924
+ } (isBuffer$5, isBufferExports));
5925
+
5926
+ /** Used as references for various `Number` constants. */
5927
+
5928
+ var MAX_SAFE_INTEGER = 9007199254740991;
5929
+
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;
6072
5959
  }
6073
5960
 
5961
+ var isLength_1 = isLength$2;
5962
+
6074
5963
  var _baseIsTypedArray;
6075
5964
  var hasRequired_baseIsTypedArray;
6076
5965
 
@@ -6078,7 +5967,7 @@ function require_baseIsTypedArray () {
6078
5967
  if (hasRequired_baseIsTypedArray) return _baseIsTypedArray;
6079
5968
  hasRequired_baseIsTypedArray = 1;
6080
5969
  var baseGetTag = _baseGetTag,
6081
- isLength = requireIsLength(),
5970
+ isLength = isLength_1,
6082
5971
  isObjectLike = isObjectLike_1;
6083
5972
 
6084
5973
  /** `Object#toString` result references. */
@@ -6148,67 +6037,52 @@ function require_baseIsTypedArray () {
6148
6037
  * @returns {Function} Returns the new capped function.
6149
6038
  */
6150
6039
 
6151
- var _baseUnary;
6152
- var hasRequired_baseUnary;
6153
-
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;
6040
+ function baseUnary$2(func) {
6041
+ return function(value) {
6042
+ return func(value);
6043
+ };
6165
6044
  }
6166
6045
 
6046
+ var _baseUnary = baseUnary$2;
6047
+
6167
6048
  var _nodeUtilExports = {};
6168
6049
  var _nodeUtil = {
6169
6050
  get exports(){ return _nodeUtilExports; },
6170
6051
  set exports(v){ _nodeUtilExports = v; },
6171
6052
  };
6172
6053
 
6173
- var hasRequired_nodeUtil;
6174
-
6175
- function require_nodeUtil () {
6176
- if (hasRequired_nodeUtil) return _nodeUtilExports;
6177
- hasRequired_nodeUtil = 1;
6178
- (function (module, exports) {
6179
- var freeGlobal = _freeGlobal;
6054
+ (function (module, exports) {
6055
+ var freeGlobal = _freeGlobal;
6180
6056
 
6181
- /** Detect free variable `exports`. */
6182
- var freeExports = exports && !exports.nodeType && exports;
6057
+ /** Detect free variable `exports`. */
6058
+ var freeExports = exports && !exports.nodeType && exports;
6183
6059
 
6184
- /** Detect free variable `module`. */
6185
- var freeModule = freeExports && 'object' == 'object' && module && !module.nodeType && module;
6060
+ /** Detect free variable `module`. */
6061
+ var freeModule = freeExports && 'object' == 'object' && module && !module.nodeType && module;
6186
6062
 
6187
- /** Detect the popular CommonJS extension `module.exports`. */
6188
- var moduleExports = freeModule && freeModule.exports === freeExports;
6063
+ /** Detect the popular CommonJS extension `module.exports`. */
6064
+ var moduleExports = freeModule && freeModule.exports === freeExports;
6189
6065
 
6190
- /** Detect free variable `process` from Node.js. */
6191
- var freeProcess = moduleExports && freeGlobal.process;
6066
+ /** Detect free variable `process` from Node.js. */
6067
+ var freeProcess = moduleExports && freeGlobal.process;
6192
6068
 
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;
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;
6198
6074
 
6199
- if (types) {
6200
- return types;
6201
- }
6075
+ if (types) {
6076
+ return types;
6077
+ }
6202
6078
 
6203
- // Legacy `process.binding('util')` for Node.js < 10.
6204
- return freeProcess && freeProcess.binding && freeProcess.binding('util');
6205
- } catch (e) {}
6206
- }());
6079
+ // Legacy `process.binding('util')` for Node.js < 10.
6080
+ return freeProcess && freeProcess.binding && freeProcess.binding('util');
6081
+ } catch (e) {}
6082
+ }());
6207
6083
 
6208
- module.exports = nodeUtil;
6084
+ module.exports = nodeUtil;
6209
6085
  } (_nodeUtil, _nodeUtilExports));
6210
- return _nodeUtilExports;
6211
- }
6212
6086
 
6213
6087
  var isTypedArray_1;
6214
6088
  var hasRequiredIsTypedArray;
@@ -6217,8 +6091,8 @@ function requireIsTypedArray () {
6217
6091
  if (hasRequiredIsTypedArray) return isTypedArray_1;
6218
6092
  hasRequiredIsTypedArray = 1;
6219
6093
  var baseIsTypedArray = require_baseIsTypedArray(),
6220
- baseUnary = require_baseUnary(),
6221
- nodeUtil = require_nodeUtil();
6094
+ baseUnary = _baseUnary,
6095
+ nodeUtil = _nodeUtilExports;
6222
6096
 
6223
6097
  /* Node.js helper references. */
6224
6098
  var nodeIsTypedArray = nodeUtil && nodeUtil.isTypedArray;
@@ -6246,64 +6120,56 @@ function requireIsTypedArray () {
6246
6120
  return isTypedArray_1;
6247
6121
  }
6248
6122
 
6249
- var _arrayLikeKeys;
6250
- var hasRequired_arrayLikeKeys;
6251
-
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();
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();
6261
6129
 
6262
- /** Used for built-in method references. */
6263
- var objectProto = Object.prototype;
6130
+ /** Used for built-in method references. */
6131
+ var objectProto$7 = Object.prototype;
6264
6132
 
6265
- /** Used to check objects for own properties. */
6266
- var hasOwnProperty = objectProto.hasOwnProperty;
6133
+ /** Used to check objects for own properties. */
6134
+ var hasOwnProperty$5 = objectProto$7.hasOwnProperty;
6267
6135
 
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
- }
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;
6302
6152
 
6303
- _arrayLikeKeys = arrayLikeKeys;
6304
- return _arrayLikeKeys;
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;
6305
6169
  }
6306
6170
 
6171
+ var _arrayLikeKeys = arrayLikeKeys$1;
6172
+
6307
6173
  /** Used for built-in method references. */
6308
6174
 
6309
6175
  var objectProto$6 = Object.prototype;
@@ -6315,14 +6181,14 @@ var objectProto$6 = Object.prototype;
6315
6181
  * @param {*} value The value to check.
6316
6182
  * @returns {boolean} Returns `true` if `value` is a prototype, else `false`.
6317
6183
  */
6318
- function isPrototype$1(value) {
6184
+ function isPrototype$2(value) {
6319
6185
  var Ctor = value && value.constructor,
6320
6186
  proto = (typeof Ctor == 'function' && Ctor.prototype) || objectProto$6;
6321
6187
 
6322
6188
  return value === proto;
6323
6189
  }
6324
6190
 
6325
- var _isPrototype = isPrototype$1;
6191
+ var _isPrototype = isPrototype$2;
6326
6192
 
6327
6193
  /**
6328
6194
  * Creates a unary function that invokes `func` with its argument transformed.
@@ -6348,7 +6214,7 @@ var nativeKeys$1 = overArg$1(Object.keys, Object);
6348
6214
 
6349
6215
  var _nativeKeys = nativeKeys$1;
6350
6216
 
6351
- var isPrototype = _isPrototype,
6217
+ var isPrototype$1 = _isPrototype,
6352
6218
  nativeKeys = _nativeKeys;
6353
6219
 
6354
6220
  /** Used for built-in method references. */
@@ -6365,7 +6231,7 @@ var hasOwnProperty$4 = objectProto$5.hasOwnProperty;
6365
6231
  * @returns {Array} Returns the array of property names.
6366
6232
  */
6367
6233
  function baseKeys$1(object) {
6368
- if (!isPrototype(object)) {
6234
+ if (!isPrototype$1(object)) {
6369
6235
  return nativeKeys(object);
6370
6236
  }
6371
6237
  var result = [];
@@ -6379,51 +6245,43 @@ function baseKeys$1(object) {
6379
6245
 
6380
6246
  var _baseKeys = baseKeys$1;
6381
6247
 
6382
- var isArrayLike_1;
6383
- var hasRequiredIsArrayLike;
6384
-
6385
- function requireIsArrayLike () {
6386
- if (hasRequiredIsArrayLike) return isArrayLike_1;
6387
- hasRequiredIsArrayLike = 1;
6388
- var isFunction = isFunction_1,
6389
- isLength = requireIsLength();
6390
-
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
- }
6248
+ var isFunction$1 = isFunction_1,
6249
+ isLength$1 = isLength_1;
6419
6250
 
6420
- isArrayLike_1 = isArrayLike;
6421
- return isArrayLike_1;
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);
6422
6278
  }
6423
6279
 
6424
- var arrayLikeKeys = require_arrayLikeKeys(),
6280
+ var isArrayLike_1 = isArrayLike$1;
6281
+
6282
+ var arrayLikeKeys = _arrayLikeKeys,
6425
6283
  baseKeys = _baseKeys,
6426
- isArrayLike = requireIsArrayLike();
6284
+ isArrayLike = isArrayLike_1;
6427
6285
 
6428
6286
  /**
6429
6287
  * Creates an array of the own enumerable property names of `object`.
@@ -6804,10 +6662,10 @@ function require_stackHas () {
6804
6662
  }
6805
6663
 
6806
6664
  var getNative$3 = _getNative,
6807
- root$3 = _root;
6665
+ root$4 = _root;
6808
6666
 
6809
6667
  /* Built-in method references that are verified to be native. */
6810
- var Map$2 = getNative$3(root$3, 'Map');
6668
+ var Map$2 = getNative$3(root$4, 'Map');
6811
6669
 
6812
6670
  var _Map = Map$2;
6813
6671
 
@@ -7367,7 +7225,7 @@ var hasRequired_baseKeysIn;
7367
7225
  function require_baseKeysIn () {
7368
7226
  if (hasRequired_baseKeysIn) return _baseKeysIn;
7369
7227
  hasRequired_baseKeysIn = 1;
7370
- var isObject = requireIsObject(),
7228
+ var isObject = isObject_1,
7371
7229
  isPrototype = _isPrototype,
7372
7230
  nativeKeysIn = require_nativeKeysIn();
7373
7231
 
@@ -7409,9 +7267,9 @@ var hasRequiredKeysIn;
7409
7267
  function requireKeysIn () {
7410
7268
  if (hasRequiredKeysIn) return keysIn_1;
7411
7269
  hasRequiredKeysIn = 1;
7412
- var arrayLikeKeys = require_arrayLikeKeys(),
7270
+ var arrayLikeKeys = _arrayLikeKeys,
7413
7271
  baseKeysIn = require_baseKeysIn(),
7414
- isArrayLike = requireIsArrayLike();
7272
+ isArrayLike = isArrayLike_1;
7415
7273
 
7416
7274
  /**
7417
7275
  * Creates an array of the own and inherited enumerable property names of `object`.
@@ -7468,50 +7326,43 @@ var _cloneBuffer = {
7468
7326
  set exports(v){ _cloneBufferExports = v; },
7469
7327
  };
7470
7328
 
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
- }
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;
7510
7344
 
7511
- module.exports = cloneBuffer;
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
+ }
7363
+
7364
+ module.exports = cloneBuffer;
7512
7365
  } (_cloneBuffer, _cloneBufferExports));
7513
- return _cloneBufferExports;
7514
- }
7515
7366
 
7516
7367
  /**
7517
7368
  * A specialized version of `_.filter` for arrays without support for
@@ -7638,12 +7489,12 @@ var _arrayPush = arrayPush$3;
7638
7489
  var overArg = _overArg;
7639
7490
 
7640
7491
  /** Built-in value references. */
7641
- var getPrototype$2 = overArg(Object.getPrototypeOf, Object);
7492
+ var getPrototype$3 = overArg(Object.getPrototypeOf, Object);
7642
7493
 
7643
- var _getPrototype = getPrototype$2;
7494
+ var _getPrototype = getPrototype$3;
7644
7495
 
7645
7496
  var arrayPush$2 = _arrayPush,
7646
- getPrototype$1 = _getPrototype,
7497
+ getPrototype$2 = _getPrototype,
7647
7498
  getSymbols$1 = _getSymbols,
7648
7499
  stubArray = stubArray_1;
7649
7500
 
@@ -7661,7 +7512,7 @@ var getSymbolsIn$2 = !nativeGetSymbols ? stubArray : function(object) {
7661
7512
  var result = [];
7662
7513
  while (object) {
7663
7514
  arrayPush$2(result, getSymbols$1(object));
7664
- object = getPrototype$1(object);
7515
+ object = getPrototype$2(object);
7665
7516
  }
7666
7517
  return result;
7667
7518
  };
@@ -7742,26 +7593,26 @@ function getAllKeysIn$1(object) {
7742
7593
  var _getAllKeysIn = getAllKeysIn$1;
7743
7594
 
7744
7595
  var getNative$2 = _getNative,
7745
- root$2 = _root;
7596
+ root$3 = _root;
7746
7597
 
7747
7598
  /* Built-in method references that are verified to be native. */
7748
- var DataView$2 = getNative$2(root$2, 'DataView');
7599
+ var DataView$2 = getNative$2(root$3, 'DataView');
7749
7600
 
7750
7601
  var _DataView = DataView$2;
7751
7602
 
7752
7603
  var getNative$1 = _getNative,
7753
- root$1 = _root;
7604
+ root$2 = _root;
7754
7605
 
7755
7606
  /* Built-in method references that are verified to be native. */
7756
- var Promise$2 = getNative$1(root$1, 'Promise');
7607
+ var Promise$2 = getNative$1(root$2, 'Promise');
7757
7608
 
7758
7609
  var _Promise = Promise$2;
7759
7610
 
7760
7611
  var getNative = _getNative,
7761
- root = _root;
7612
+ root$1 = _root;
7762
7613
 
7763
7614
  /* Built-in method references that are verified to be native. */
7764
- var Set$2 = getNative(root, 'Set');
7615
+ var Set$2 = getNative(root$1, 'Set');
7765
7616
 
7766
7617
  var _Set = Set$2;
7767
7618
 
@@ -7852,47 +7703,31 @@ function initCloneArray$1(array) {
7852
7703
 
7853
7704
  var _initCloneArray = initCloneArray$1;
7854
7705
 
7855
- var _Uint8Array;
7856
- var hasRequired_Uint8Array;
7857
-
7858
- function require_Uint8Array () {
7859
- if (hasRequired_Uint8Array) return _Uint8Array;
7860
- hasRequired_Uint8Array = 1;
7861
- var root = _root;
7706
+ var root = _root;
7862
7707
 
7863
- /** Built-in value references. */
7864
- var Uint8Array = root.Uint8Array;
7865
-
7866
- _Uint8Array = Uint8Array;
7867
- return _Uint8Array;
7868
- }
7869
-
7870
- var _cloneArrayBuffer;
7871
- var hasRequired_cloneArrayBuffer;
7708
+ /** Built-in value references. */
7709
+ var Uint8Array$3 = root.Uint8Array;
7872
7710
 
7873
- function require_cloneArrayBuffer () {
7874
- if (hasRequired_cloneArrayBuffer) return _cloneArrayBuffer;
7875
- hasRequired_cloneArrayBuffer = 1;
7876
- var Uint8Array = require_Uint8Array();
7711
+ var _Uint8Array = Uint8Array$3;
7877
7712
 
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
- }
7713
+ var Uint8Array$2 = _Uint8Array;
7890
7714
 
7891
- _cloneArrayBuffer = cloneArrayBuffer;
7892
- return _cloneArrayBuffer;
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;
7893
7726
  }
7894
7727
 
7895
- var cloneArrayBuffer$1 = require_cloneArrayBuffer();
7728
+ var _cloneArrayBuffer = cloneArrayBuffer$2;
7729
+
7730
+ var cloneArrayBuffer$1 = _cloneArrayBuffer;
7896
7731
 
7897
7732
  /**
7898
7733
  * Creates a clone of `dataView`.
@@ -7953,7 +7788,7 @@ var hasRequired_cloneTypedArray;
7953
7788
  function require_cloneTypedArray () {
7954
7789
  if (hasRequired_cloneTypedArray) return _cloneTypedArray;
7955
7790
  hasRequired_cloneTypedArray = 1;
7956
- var cloneArrayBuffer = require_cloneArrayBuffer();
7791
+ var cloneArrayBuffer = _cloneArrayBuffer;
7957
7792
 
7958
7793
  /**
7959
7794
  * Creates a clone of `typedArray`.
@@ -7972,7 +7807,7 @@ function require_cloneTypedArray () {
7972
7807
  return _cloneTypedArray;
7973
7808
  }
7974
7809
 
7975
- var cloneArrayBuffer = require_cloneArrayBuffer(),
7810
+ var cloneArrayBuffer = _cloneArrayBuffer,
7976
7811
  cloneDataView = _cloneDataView,
7977
7812
  cloneRegExp = _cloneRegExp,
7978
7813
  cloneSymbol = _cloneSymbol,
@@ -8050,33 +7885,25 @@ function initCloneByTag$1(object, tag, isDeep) {
8050
7885
 
8051
7886
  var _initCloneByTag = initCloneByTag$1;
8052
7887
 
8053
- var _initCloneObject;
8054
- var hasRequired_initCloneObject;
8055
-
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;
8062
-
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
- }
7888
+ var baseCreate = _baseCreate,
7889
+ getPrototype$1 = _getPrototype,
7890
+ isPrototype = _isPrototype;
8075
7891
 
8076
- _initCloneObject = initCloneObject;
8077
- return _initCloneObject;
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
+ : {};
8078
7903
  }
8079
7904
 
7905
+ var _initCloneObject = initCloneObject$1;
7906
+
8080
7907
  var getTag$4 = _getTag,
8081
7908
  isObjectLike$5 = isObjectLike_1;
8082
7909
 
@@ -8097,8 +7924,8 @@ function baseIsMap$1(value) {
8097
7924
  var _baseIsMap = baseIsMap$1;
8098
7925
 
8099
7926
  var baseIsMap = _baseIsMap,
8100
- baseUnary$1 = require_baseUnary(),
8101
- nodeUtil$1 = require_nodeUtil();
7927
+ baseUnary$1 = _baseUnary,
7928
+ nodeUtil$1 = _nodeUtilExports;
8102
7929
 
8103
7930
  /* Node.js helper references. */
8104
7931
  var nodeIsMap = nodeUtil$1 && nodeUtil$1.isMap;
@@ -8144,8 +7971,8 @@ function baseIsSet$1(value) {
8144
7971
  var _baseIsSet = baseIsSet$1;
8145
7972
 
8146
7973
  var baseIsSet = _baseIsSet,
8147
- baseUnary = require_baseUnary(),
8148
- nodeUtil = require_nodeUtil();
7974
+ baseUnary = _baseUnary,
7975
+ nodeUtil = _nodeUtilExports;
8149
7976
 
8150
7977
  /* Node.js helper references. */
8151
7978
  var nodeIsSet = nodeUtil && nodeUtil.isSet;
@@ -8176,7 +8003,7 @@ var Stack$2 = require_Stack(),
8176
8003
  assignValue = _assignValue,
8177
8004
  baseAssign = _baseAssign,
8178
8005
  baseAssignIn = _baseAssignIn,
8179
- cloneBuffer = require_cloneBuffer(),
8006
+ cloneBuffer = _cloneBufferExports,
8180
8007
  copyArray$1 = _copyArray,
8181
8008
  copySymbols = _copySymbols,
8182
8009
  copySymbolsIn = _copySymbolsIn,
@@ -8185,11 +8012,11 @@ var Stack$2 = require_Stack(),
8185
8012
  getTag$2 = _getTag,
8186
8013
  initCloneArray = _initCloneArray,
8187
8014
  initCloneByTag = _initCloneByTag,
8188
- initCloneObject = require_initCloneObject(),
8015
+ initCloneObject = _initCloneObject,
8189
8016
  isArray$d = isArray_1,
8190
- isBuffer$3 = requireIsBuffer(),
8017
+ isBuffer$3 = isBufferExports,
8191
8018
  isMap$1 = isMap_1,
8192
- isObject$2 = requireIsObject(),
8019
+ isObject$2 = isObject_1,
8193
8020
  isSet$1 = isSet_1,
8194
8021
  keys$1 = keys_1,
8195
8022
  keysIn = requireKeysIn();
@@ -8793,7 +8620,7 @@ function setToArray$1(set) {
8793
8620
  var _setToArray = setToArray$1;
8794
8621
 
8795
8622
  var Symbol$3 = _Symbol,
8796
- Uint8Array$1 = require_Uint8Array(),
8623
+ Uint8Array$1 = _Uint8Array,
8797
8624
  eq = requireEq(),
8798
8625
  equalArrays$1 = _equalArrays,
8799
8626
  mapToArray = _mapToArray,
@@ -9002,7 +8829,7 @@ var Stack$1 = require_Stack(),
9002
8829
  equalObjects = _equalObjects,
9003
8830
  getTag = _getTag,
9004
8831
  isArray$c = isArray_1,
9005
- isBuffer$2 = requireIsBuffer(),
8832
+ isBuffer$2 = isBufferExports,
9006
8833
  isTypedArray = requireIsTypedArray();
9007
8834
 
9008
8835
  /** Used to compose bitmasks for value comparisons. */
@@ -9172,7 +8999,7 @@ function baseIsMatch$1(object, source, matchData, customizer) {
9172
8999
 
9173
9000
  var _baseIsMatch = baseIsMatch$1;
9174
9001
 
9175
- var isObject$1 = requireIsObject();
9002
+ var isObject$1 = isObject_1;
9176
9003
 
9177
9004
  /**
9178
9005
  * Checks if `value` is suitable for strict equality comparisons, i.e. `===`.
@@ -9628,8 +9455,8 @@ var _baseHasIn = baseHasIn$1;
9628
9455
  var castPath = _castPath,
9629
9456
  isArguments$1 = requireIsArguments(),
9630
9457
  isArray$8 = isArray_1,
9631
- isIndex = require_isIndex(),
9632
- isLength = requireIsLength(),
9458
+ isIndex = _isIndex,
9459
+ isLength = isLength_1,
9633
9460
  toKey$3 = _toKey;
9634
9461
 
9635
9462
  /**
@@ -9802,7 +9629,7 @@ var property_1 = property$1;
9802
9629
 
9803
9630
  var baseMatches = _baseMatches,
9804
9631
  baseMatchesProperty = _baseMatchesProperty,
9805
- identity = requireIdentity(),
9632
+ identity = identity_1,
9806
9633
  isArray$7 = isArray_1,
9807
9634
  property = property_1;
9808
9635
 
@@ -9969,54 +9796,46 @@ function flatten$1(array) {
9969
9796
 
9970
9797
  var flatten_1 = flatten$1;
9971
9798
 
9972
- var _overRest;
9973
- var hasRequired_overRest;
9974
-
9975
- function require_overRest () {
9976
- if (hasRequired_overRest) return _overRest;
9977
- hasRequired_overRest = 1;
9978
- var apply = _apply;
9979
-
9980
- /* Built-in method references for those with the same name as other `lodash` methods. */
9981
- var nativeMax = Math.max;
9799
+ var apply = _apply;
9982
9800
 
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);
9801
+ /* Built-in method references for those with the same name as other `lodash` methods. */
9802
+ var nativeMax = Math.max;
9999
9803
 
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
- }
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);
10012
9820
 
10013
- _overRest = overRest;
10014
- return _overRest;
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
+ };
10015
9832
  }
10016
9833
 
9834
+ var _overRest = overRest$1;
9835
+
10017
9836
  var flatten = flatten_1,
10018
- overRest = require_overRest(),
10019
- setToString = require_setToString();
9837
+ overRest = _overRest,
9838
+ setToString = _setToString;
10020
9839
 
10021
9840
  /**
10022
9841
  * A specialized version of `baseRest` which flattens the rest array.
@@ -10141,7 +9960,7 @@ var hasRequired_assignMergeValue;
10141
9960
  function require_assignMergeValue () {
10142
9961
  if (hasRequired_assignMergeValue) return _assignMergeValue;
10143
9962
  hasRequired_assignMergeValue = 1;
10144
- var baseAssignValue = require_baseAssignValue(),
9963
+ var baseAssignValue = _baseAssignValue,
10145
9964
  eq = requireEq();
10146
9965
 
10147
9966
  /**
@@ -10230,7 +10049,7 @@ var hasRequiredIsArrayLikeObject;
10230
10049
  function requireIsArrayLikeObject () {
10231
10050
  if (hasRequiredIsArrayLikeObject) return isArrayLikeObject_1;
10232
10051
  hasRequiredIsArrayLikeObject = 1;
10233
- var isArrayLike = requireIsArrayLike(),
10052
+ var isArrayLike = isArrayLike_1,
10234
10053
  isObjectLike = isObjectLike_1;
10235
10054
 
10236
10055
  /**
@@ -10345,16 +10164,16 @@ function require_baseMergeDeep () {
10345
10164
  if (hasRequired_baseMergeDeep) return _baseMergeDeep;
10346
10165
  hasRequired_baseMergeDeep = 1;
10347
10166
  var assignMergeValue = require_assignMergeValue(),
10348
- cloneBuffer = require_cloneBuffer(),
10167
+ cloneBuffer = _cloneBufferExports,
10349
10168
  cloneTypedArray = require_cloneTypedArray(),
10350
10169
  copyArray = _copyArray,
10351
- initCloneObject = require_initCloneObject(),
10170
+ initCloneObject = _initCloneObject,
10352
10171
  isArguments = requireIsArguments(),
10353
10172
  isArray = isArray_1,
10354
10173
  isArrayLikeObject = requireIsArrayLikeObject(),
10355
- isBuffer = requireIsBuffer(),
10174
+ isBuffer = isBufferExports,
10356
10175
  isFunction = isFunction_1,
10357
- isObject = requireIsObject(),
10176
+ isObject = isObject_1,
10358
10177
  isPlainObject = isPlainObject_1,
10359
10178
  isTypedArray = requireIsTypedArray(),
10360
10179
  safeGet = require_safeGet(),
@@ -10451,7 +10270,7 @@ function require_baseMerge () {
10451
10270
  assignMergeValue = require_assignMergeValue(),
10452
10271
  baseFor = require_baseFor(),
10453
10272
  baseMergeDeep = require_baseMergeDeep(),
10454
- isObject = requireIsObject(),
10273
+ isObject = isObject_1,
10455
10274
  keysIn = requireKeysIn(),
10456
10275
  safeGet = require_safeGet();
10457
10276
 
@@ -10498,9 +10317,9 @@ var hasRequired_baseRest;
10498
10317
  function require_baseRest () {
10499
10318
  if (hasRequired_baseRest) return _baseRest;
10500
10319
  hasRequired_baseRest = 1;
10501
- var identity = requireIdentity(),
10502
- overRest = require_overRest(),
10503
- setToString = require_setToString();
10320
+ var identity = identity_1,
10321
+ overRest = _overRest,
10322
+ setToString = _setToString;
10504
10323
 
10505
10324
  /**
10506
10325
  * The base implementation of `_.rest` which doesn't validate or coerce arguments.
@@ -10525,9 +10344,9 @@ function require_isIterateeCall () {
10525
10344
  if (hasRequired_isIterateeCall) return _isIterateeCall;
10526
10345
  hasRequired_isIterateeCall = 1;
10527
10346
  var eq = requireEq(),
10528
- isArrayLike = requireIsArrayLike(),
10529
- isIndex = require_isIndex(),
10530
- isObject = requireIsObject();
10347
+ isArrayLike = isArrayLike_1,
10348
+ isIndex = _isIndex,
10349
+ isObject = isObject_1;
10531
10350
 
10532
10351
  /**
10533
10352
  * Checks if the given arguments are from an iteratee call.