diff --git a/README.md b/README.md
index 00c1551aa..dab4a6fe6 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# lodash-amd v4.8.0
+# lodash-amd v4.8.2
The [Lodash](https://lodash.com/) library exported as [AMD](https://github.com/amdjs/amdjs-api/wiki/AMD) modules.
@@ -27,4 +27,4 @@ require({
});
```
-See the [package source](https://github.com/lodash/lodash/tree/4.8.0-amd) for more details.
+See the [package source](https://github.com/lodash/lodash/tree/4.8.2-amd) for more details.
diff --git a/_createOver.js b/_createOver.js
index 2ea2c5b34..ca834ba30 100644
--- a/_createOver.js
+++ b/_createOver.js
@@ -1,4 +1,4 @@
-define(['./_apply', './_arrayMap', './_baseIteratee', './rest'], function(apply, arrayMap, baseIteratee, rest) {
+define(['./_apply', './_arrayMap', './_baseFlatten', './_baseIteratee', './rest'], function(apply, arrayMap, baseFlatten, baseIteratee, rest) {
/**
* Creates a function like `_.over`.
@@ -9,7 +9,7 @@ define(['./_apply', './_arrayMap', './_baseIteratee', './rest'], function(apply,
*/
function createOver(arrayFunc) {
return rest(function(iteratees) {
- iteratees = arrayMap(iteratees, baseIteratee);
+ iteratees = arrayMap(baseFlatten(iteratees, 1), baseIteratee);
return rest(function(args) {
var thisArg = this;
return arrayFunc(iteratees, function(iteratee) {
diff --git a/main.js b/main.js
index 64902db00..62f381b0c 100644
--- a/main.js
+++ b/main.js
@@ -1,6 +1,6 @@
/**
* @license
- * lodash 4.8.0 (Custom Build)
+ * lodash 4.8.2 (Custom Build)
* Build: `lodash exports="amd" -d -o ./main.js`
* Copyright jQuery Foundation and other contributors
* Released under MIT license
@@ -13,7 +13,7 @@
var undefined;
/** Used as the semantic version number. */
- var VERSION = '4.8.0';
+ var VERSION = '4.8.2';
/** Used as the size to enable large array optimizations. */
var LARGE_ARRAY_SIZE = 200;
@@ -4609,7 +4609,7 @@
*/
function createOver(arrayFunc) {
return rest(function(iteratees) {
- iteratees = arrayMap(iteratees, getIteratee());
+ iteratees = arrayMap(baseFlatten(iteratees, 1), getIteratee());
return rest(function(args) {
var thisArg = this;
return arrayFunc(iteratees, function(iteratee) {
@@ -9593,7 +9593,7 @@
* @memberOf _
* @category Function
* @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.
* @returns {Function} Returns the new function.
* @example
@@ -9617,7 +9617,7 @@
* // => [100, 10]
*/
var overArgs = rest(function(func, transforms) {
- transforms = arrayMap(transforms, getIteratee());
+ transforms = arrayMap(baseFlatten(transforms, 1), getIteratee());
var funcsLength = transforms.length;
return rest(function(args) {
@@ -14692,7 +14692,7 @@
* @memberOf _
* @since 4.0.0
* @category Util
- * @param {...Function} iteratees The iteratees to invoke.
+ * @param {...(Function|Function[])} iteratees The iteratees to invoke.
* @returns {Function} Returns the new function.
* @example
*
@@ -14711,7 +14711,7 @@
* @memberOf _
* @since 4.0.0
* @category Util
- * @param {...Function} predicates The predicates to check.
+ * @param {...(Function|Function[])} predicates The predicates to check.
* @returns {Function} Returns the new function.
* @example
*
@@ -14736,7 +14736,7 @@
* @memberOf _
* @since 4.0.0
* @category Util
- * @param {...Function} predicates The predicates to check.
+ * @param {...(Function|Function[])} predicates The predicates to check.
* @returns {Function} Returns the new function.
* @example
*
diff --git a/over.js b/over.js
index ecf1cbd70..597da9bb0 100644
--- a/over.js
+++ b/over.js
@@ -8,7 +8,7 @@ define(['./_arrayMap', './_createOver'], function(arrayMap, createOver) {
* @memberOf _
* @since 4.0.0
* @category Util
- * @param {...Function} iteratees The iteratees to invoke.
+ * @param {...(Function|Function[])} iteratees The iteratees to invoke.
* @returns {Function} Returns the new function.
* @example
*
diff --git a/overArgs.js b/overArgs.js
index d633ceb7b..308998de5 100644
--- a/overArgs.js
+++ b/overArgs.js
@@ -1,4 +1,4 @@
-define(['./_apply', './_arrayMap', './_baseIteratee', './rest'], function(apply, arrayMap, baseIteratee, rest) {
+define(['./_apply', './_arrayMap', './_baseFlatten', './_baseIteratee', './rest'], function(apply, arrayMap, baseFlatten, baseIteratee, rest) {
/* Built-in method references for those with the same name as other `lodash` methods. */
var nativeMin = Math.min;
@@ -12,7 +12,7 @@ define(['./_apply', './_arrayMap', './_baseIteratee', './rest'], function(apply,
* @memberOf _
* @category Function
* @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.
* @returns {Function} Returns the new function.
* @example
@@ -36,7 +36,7 @@ define(['./_apply', './_arrayMap', './_baseIteratee', './rest'], function(apply,
* // => [100, 10]
*/
var overArgs = rest(function(func, transforms) {
- transforms = arrayMap(transforms, baseIteratee);
+ transforms = arrayMap(baseFlatten(transforms, 1), baseIteratee);
var funcsLength = transforms.length;
return rest(function(args) {
diff --git a/overEvery.js b/overEvery.js
index f4c187e20..4f7990887 100644
--- a/overEvery.js
+++ b/overEvery.js
@@ -8,7 +8,7 @@ define(['./_arrayEvery', './_createOver'], function(arrayEvery, createOver) {
* @memberOf _
* @since 4.0.0
* @category Util
- * @param {...Function} predicates The predicates to check.
+ * @param {...(Function|Function[])} predicates The predicates to check.
* @returns {Function} Returns the new function.
* @example
*
diff --git a/overSome.js b/overSome.js
index a8181e41b..0609e9e44 100644
--- a/overSome.js
+++ b/overSome.js
@@ -8,7 +8,7 @@ define(['./_arraySome', './_createOver'], function(arraySome, createOver) {
* @memberOf _
* @since 4.0.0
* @category Util
- * @param {...Function} predicates The predicates to check.
+ * @param {...(Function|Function[])} predicates The predicates to check.
* @returns {Function} Returns the new function.
* @example
*
diff --git a/package.json b/package.json
index d2a2778ce..93c03682a 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "lodash-amd",
- "version": "4.8.0",
+ "version": "4.8.2",
"description": "Lodash exported as AMD modules.",
"homepage": "https://lodash.com/custom-builds",
"license": "MIT",