Comparing version 4.8.0 to 4.8.2
import apply from './_apply'; | ||
import arrayMap from './_arrayMap'; | ||
import baseFlatten from './_baseFlatten'; | ||
import baseIteratee from './_baseIteratee'; | ||
@@ -15,3 +16,3 @@ import rest from './rest'; | ||
return rest(function(iteratees) { | ||
iteratees = arrayMap(iteratees, baseIteratee); | ||
iteratees = arrayMap(baseFlatten(iteratees, 1), baseIteratee); | ||
return rest(function(args) { | ||
@@ -18,0 +19,0 @@ var thisArg = this; |
/** | ||
* @license | ||
* lodash 4.8.0 (Custom Build) <https://lodash.com/> | ||
* lodash 4.8.2 (Custom Build) <https://lodash.com/> | ||
* Build: `lodash modularize exports="es" -o ./` | ||
@@ -47,3 +47,3 @@ * Copyright jQuery Foundation and other contributors <https://jquery.org/> | ||
/** Used as the semantic version number. */ | ||
var VERSION = '4.8.0'; | ||
var VERSION = '4.8.2'; | ||
@@ -50,0 +50,0 @@ /** Used to compose bitmasks for wrapper metadata. */ |
/** | ||
* @license | ||
* lodash 4.8.0 (Custom Build) <https://lodash.com/> | ||
* lodash 4.8.2 (Custom Build) <https://lodash.com/> | ||
* Build: `lodash modularize exports="es" -o ./` | ||
@@ -5,0 +5,0 @@ * Copyright jQuery Foundation and other contributors <https://jquery.org/> |
@@ -12,3 +12,3 @@ import arrayMap from './_arrayMap'; | ||
* @category Util | ||
* @param {...Function} iteratees The iteratees to invoke. | ||
* @param {...(Function|Function[])} iteratees The iteratees to invoke. | ||
* @returns {Function} Returns the new function. | ||
@@ -15,0 +15,0 @@ * @example |
import apply from './_apply'; | ||
import arrayMap from './_arrayMap'; | ||
import baseFlatten from './_baseFlatten'; | ||
import baseIteratee from './_baseIteratee'; | ||
@@ -18,3 +19,3 @@ import rest from './rest'; | ||
* @param {Function} func The function to wrap. | ||
* @param {...Function} [transforms] The functions to transform | ||
* @param {...(Function|Function[])} [transforms] The functions to transform. | ||
* arguments, specified individually or in arrays. | ||
@@ -43,3 +44,3 @@ * @returns {Function} Returns the new function. | ||
var overArgs = rest(function(func, transforms) { | ||
transforms = arrayMap(transforms, baseIteratee); | ||
transforms = arrayMap(baseFlatten(transforms, 1), baseIteratee); | ||
@@ -46,0 +47,0 @@ var funcsLength = transforms.length; |
@@ -12,3 +12,3 @@ import arrayEvery from './_arrayEvery'; | ||
* @category Util | ||
* @param {...Function} predicates The predicates to check. | ||
* @param {...(Function|Function[])} predicates The predicates to check. | ||
* @returns {Function} Returns the new function. | ||
@@ -15,0 +15,0 @@ * @example |
@@ -12,3 +12,3 @@ import arraySome from './_arraySome'; | ||
* @category Util | ||
* @param {...Function} predicates The predicates to check. | ||
* @param {...(Function|Function[])} predicates The predicates to check. | ||
* @returns {Function} Returns the new function. | ||
@@ -15,0 +15,0 @@ * @example |
{ | ||
"name": "lodash-es", | ||
"version": "4.8.0", | ||
"version": "4.8.2", | ||
"description": "Lodash exported as ES modules.", | ||
@@ -5,0 +5,0 @@ "homepage": "https://lodash.com/custom-builds", |
@@ -1,2 +0,2 @@ | ||
# lodash-es v4.8.0 | ||
# lodash-es v4.8.2 | ||
@@ -10,2 +10,2 @@ The [Lodash](https://lodash.com/) library exported as [ES](http://www.ecma-international.org/ecma-262/6.0/) modules. | ||
See the [package source](https://github.com/lodash/lodash/tree/4.8.0-es) for more details. | ||
See the [package source](https://github.com/lodash/lodash/tree/4.8.2-es) for more details. |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
574993
18192