snyk 1.871.0 → 1.874.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.
@@ -1,5 +1,5 @@
1
- exports.id = 406;
2
- exports.ids = [406];
1
+ exports.id = 191;
2
+ exports.ids = [191];
3
3
  exports.modules = {
4
4
 
5
5
  /***/ 31730:
@@ -5415,362 +5415,6 @@ function property(path) {
5415
5415
  module.exports = filter;
5416
5416
 
5417
5417
 
5418
- /***/ }),
5419
-
5420
- /***/ 5800:
5421
- /***/ ((module) => {
5422
-
5423
- /**
5424
- * lodash (Custom Build) <https://lodash.com/>
5425
- * Build: `lodash modularize exports="npm" -o ./`
5426
- * Copyright jQuery Foundation and other contributors <https://jquery.org/>
5427
- * Released under MIT license <https://lodash.com/license>
5428
- * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
5429
- * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
5430
- */
5431
-
5432
- /** Used as references for various `Number` constants. */
5433
- var MAX_SAFE_INTEGER = 9007199254740991;
5434
-
5435
- /** `Object#toString` result references. */
5436
- var argsTag = '[object Arguments]',
5437
- funcTag = '[object Function]',
5438
- genTag = '[object GeneratorFunction]';
5439
-
5440
- /** Detect free variable `global` from Node.js. */
5441
- var freeGlobal = typeof global == 'object' && global && global.Object === Object && global;
5442
-
5443
- /** Detect free variable `self`. */
5444
- var freeSelf = typeof self == 'object' && self && self.Object === Object && self;
5445
-
5446
- /** Used as a reference to the global object. */
5447
- var root = freeGlobal || freeSelf || Function('return this')();
5448
-
5449
- /**
5450
- * Appends the elements of `values` to `array`.
5451
- *
5452
- * @private
5453
- * @param {Array} array The array to modify.
5454
- * @param {Array} values The values to append.
5455
- * @returns {Array} Returns `array`.
5456
- */
5457
- function arrayPush(array, values) {
5458
- var index = -1,
5459
- length = values.length,
5460
- offset = array.length;
5461
-
5462
- while (++index < length) {
5463
- array[offset + index] = values[index];
5464
- }
5465
- return array;
5466
- }
5467
-
5468
- /** Used for built-in method references. */
5469
- var objectProto = Object.prototype;
5470
-
5471
- /** Used to check objects for own properties. */
5472
- var hasOwnProperty = objectProto.hasOwnProperty;
5473
-
5474
- /**
5475
- * Used to resolve the
5476
- * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)
5477
- * of values.
5478
- */
5479
- var objectToString = objectProto.toString;
5480
-
5481
- /** Built-in value references. */
5482
- var Symbol = root.Symbol,
5483
- propertyIsEnumerable = objectProto.propertyIsEnumerable,
5484
- spreadableSymbol = Symbol ? Symbol.isConcatSpreadable : undefined;
5485
-
5486
- /**
5487
- * The base implementation of `_.flatten` with support for restricting flattening.
5488
- *
5489
- * @private
5490
- * @param {Array} array The array to flatten.
5491
- * @param {number} depth The maximum recursion depth.
5492
- * @param {boolean} [predicate=isFlattenable] The function invoked per iteration.
5493
- * @param {boolean} [isStrict] Restrict to values that pass `predicate` checks.
5494
- * @param {Array} [result=[]] The initial result value.
5495
- * @returns {Array} Returns the new flattened array.
5496
- */
5497
- function baseFlatten(array, depth, predicate, isStrict, result) {
5498
- var index = -1,
5499
- length = array.length;
5500
-
5501
- predicate || (predicate = isFlattenable);
5502
- result || (result = []);
5503
-
5504
- while (++index < length) {
5505
- var value = array[index];
5506
- if (depth > 0 && predicate(value)) {
5507
- if (depth > 1) {
5508
- // Recursively flatten arrays (susceptible to call stack limits).
5509
- baseFlatten(value, depth - 1, predicate, isStrict, result);
5510
- } else {
5511
- arrayPush(result, value);
5512
- }
5513
- } else if (!isStrict) {
5514
- result[result.length] = value;
5515
- }
5516
- }
5517
- return result;
5518
- }
5519
-
5520
- /**
5521
- * Checks if `value` is a flattenable `arguments` object or array.
5522
- *
5523
- * @private
5524
- * @param {*} value The value to check.
5525
- * @returns {boolean} Returns `true` if `value` is flattenable, else `false`.
5526
- */
5527
- function isFlattenable(value) {
5528
- return isArray(value) || isArguments(value) ||
5529
- !!(spreadableSymbol && value && value[spreadableSymbol]);
5530
- }
5531
-
5532
- /**
5533
- * Flattens `array` a single level deep.
5534
- *
5535
- * @static
5536
- * @memberOf _
5537
- * @since 0.1.0
5538
- * @category Array
5539
- * @param {Array} array The array to flatten.
5540
- * @returns {Array} Returns the new flattened array.
5541
- * @example
5542
- *
5543
- * _.flatten([1, [2, [3, [4]], 5]]);
5544
- * // => [1, 2, [3, [4]], 5]
5545
- */
5546
- function flatten(array) {
5547
- var length = array ? array.length : 0;
5548
- return length ? baseFlatten(array, 1) : [];
5549
- }
5550
-
5551
- /**
5552
- * Checks if `value` is likely an `arguments` object.
5553
- *
5554
- * @static
5555
- * @memberOf _
5556
- * @since 0.1.0
5557
- * @category Lang
5558
- * @param {*} value The value to check.
5559
- * @returns {boolean} Returns `true` if `value` is an `arguments` object,
5560
- * else `false`.
5561
- * @example
5562
- *
5563
- * _.isArguments(function() { return arguments; }());
5564
- * // => true
5565
- *
5566
- * _.isArguments([1, 2, 3]);
5567
- * // => false
5568
- */
5569
- function isArguments(value) {
5570
- // Safari 8.1 makes `arguments.callee` enumerable in strict mode.
5571
- return isArrayLikeObject(value) && hasOwnProperty.call(value, 'callee') &&
5572
- (!propertyIsEnumerable.call(value, 'callee') || objectToString.call(value) == argsTag);
5573
- }
5574
-
5575
- /**
5576
- * Checks if `value` is classified as an `Array` object.
5577
- *
5578
- * @static
5579
- * @memberOf _
5580
- * @since 0.1.0
5581
- * @category Lang
5582
- * @param {*} value The value to check.
5583
- * @returns {boolean} Returns `true` if `value` is an array, else `false`.
5584
- * @example
5585
- *
5586
- * _.isArray([1, 2, 3]);
5587
- * // => true
5588
- *
5589
- * _.isArray(document.body.children);
5590
- * // => false
5591
- *
5592
- * _.isArray('abc');
5593
- * // => false
5594
- *
5595
- * _.isArray(_.noop);
5596
- * // => false
5597
- */
5598
- var isArray = Array.isArray;
5599
-
5600
- /**
5601
- * Checks if `value` is array-like. A value is considered array-like if it's
5602
- * not a function and has a `value.length` that's an integer greater than or
5603
- * equal to `0` and less than or equal to `Number.MAX_SAFE_INTEGER`.
5604
- *
5605
- * @static
5606
- * @memberOf _
5607
- * @since 4.0.0
5608
- * @category Lang
5609
- * @param {*} value The value to check.
5610
- * @returns {boolean} Returns `true` if `value` is array-like, else `false`.
5611
- * @example
5612
- *
5613
- * _.isArrayLike([1, 2, 3]);
5614
- * // => true
5615
- *
5616
- * _.isArrayLike(document.body.children);
5617
- * // => true
5618
- *
5619
- * _.isArrayLike('abc');
5620
- * // => true
5621
- *
5622
- * _.isArrayLike(_.noop);
5623
- * // => false
5624
- */
5625
- function isArrayLike(value) {
5626
- return value != null && isLength(value.length) && !isFunction(value);
5627
- }
5628
-
5629
- /**
5630
- * This method is like `_.isArrayLike` except that it also checks if `value`
5631
- * is an object.
5632
- *
5633
- * @static
5634
- * @memberOf _
5635
- * @since 4.0.0
5636
- * @category Lang
5637
- * @param {*} value The value to check.
5638
- * @returns {boolean} Returns `true` if `value` is an array-like object,
5639
- * else `false`.
5640
- * @example
5641
- *
5642
- * _.isArrayLikeObject([1, 2, 3]);
5643
- * // => true
5644
- *
5645
- * _.isArrayLikeObject(document.body.children);
5646
- * // => true
5647
- *
5648
- * _.isArrayLikeObject('abc');
5649
- * // => false
5650
- *
5651
- * _.isArrayLikeObject(_.noop);
5652
- * // => false
5653
- */
5654
- function isArrayLikeObject(value) {
5655
- return isObjectLike(value) && isArrayLike(value);
5656
- }
5657
-
5658
- /**
5659
- * Checks if `value` is classified as a `Function` object.
5660
- *
5661
- * @static
5662
- * @memberOf _
5663
- * @since 0.1.0
5664
- * @category Lang
5665
- * @param {*} value The value to check.
5666
- * @returns {boolean} Returns `true` if `value` is a function, else `false`.
5667
- * @example
5668
- *
5669
- * _.isFunction(_);
5670
- * // => true
5671
- *
5672
- * _.isFunction(/abc/);
5673
- * // => false
5674
- */
5675
- function isFunction(value) {
5676
- // The use of `Object#toString` avoids issues with the `typeof` operator
5677
- // in Safari 8-9 which returns 'object' for typed array and other constructors.
5678
- var tag = isObject(value) ? objectToString.call(value) : '';
5679
- return tag == funcTag || tag == genTag;
5680
- }
5681
-
5682
- /**
5683
- * Checks if `value` is a valid array-like length.
5684
- *
5685
- * **Note:** This method is loosely based on
5686
- * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength).
5687
- *
5688
- * @static
5689
- * @memberOf _
5690
- * @since 4.0.0
5691
- * @category Lang
5692
- * @param {*} value The value to check.
5693
- * @returns {boolean} Returns `true` if `value` is a valid length, else `false`.
5694
- * @example
5695
- *
5696
- * _.isLength(3);
5697
- * // => true
5698
- *
5699
- * _.isLength(Number.MIN_VALUE);
5700
- * // => false
5701
- *
5702
- * _.isLength(Infinity);
5703
- * // => false
5704
- *
5705
- * _.isLength('3');
5706
- * // => false
5707
- */
5708
- function isLength(value) {
5709
- return typeof value == 'number' &&
5710
- value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER;
5711
- }
5712
-
5713
- /**
5714
- * Checks if `value` is the
5715
- * [language type](http://www.ecma-international.org/ecma-262/7.0/#sec-ecmascript-language-types)
5716
- * of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`)
5717
- *
5718
- * @static
5719
- * @memberOf _
5720
- * @since 0.1.0
5721
- * @category Lang
5722
- * @param {*} value The value to check.
5723
- * @returns {boolean} Returns `true` if `value` is an object, else `false`.
5724
- * @example
5725
- *
5726
- * _.isObject({});
5727
- * // => true
5728
- *
5729
- * _.isObject([1, 2, 3]);
5730
- * // => true
5731
- *
5732
- * _.isObject(_.noop);
5733
- * // => true
5734
- *
5735
- * _.isObject(null);
5736
- * // => false
5737
- */
5738
- function isObject(value) {
5739
- var type = typeof value;
5740
- return !!value && (type == 'object' || type == 'function');
5741
- }
5742
-
5743
- /**
5744
- * Checks if `value` is object-like. A value is object-like if it's not `null`
5745
- * and has a `typeof` result of "object".
5746
- *
5747
- * @static
5748
- * @memberOf _
5749
- * @since 4.0.0
5750
- * @category Lang
5751
- * @param {*} value The value to check.
5752
- * @returns {boolean} Returns `true` if `value` is object-like, else `false`.
5753
- * @example
5754
- *
5755
- * _.isObjectLike({});
5756
- * // => true
5757
- *
5758
- * _.isObjectLike([1, 2, 3]);
5759
- * // => true
5760
- *
5761
- * _.isObjectLike(_.noop);
5762
- * // => false
5763
- *
5764
- * _.isObjectLike(null);
5765
- * // => false
5766
- */
5767
- function isObjectLike(value) {
5768
- return !!value && typeof value == 'object';
5769
- }
5770
-
5771
- module.exports = flatten;
5772
-
5773
-
5774
5418
  /***/ }),
5775
5419
 
5776
5420
  /***/ 98423:
@@ -12609,4 +12253,4 @@ function __classPrivateFieldSet(receiver, privateMap, value) {
12609
12253
 
12610
12254
  };
12611
12255
  ;
12612
- //# sourceMappingURL=406.index.js.map
12256
+ //# sourceMappingURL=191.index.js.map