Bump to v4.8.0.

This commit is contained in:
John-David Dalton
2016-04-01 23:28:00 -07:00
parent 18d0f1d873
commit ee6ec2f672
385 changed files with 2374 additions and 1044 deletions

View File

@@ -2,14 +2,14 @@ var arrayMap = require('./_arrayMap'),
createOver = require('./_createOver');
/**
* Creates a function that invokes `iteratees` with the arguments provided
* to the created function and returns their results.
* Creates a function that invokes `iteratees` with the arguments it receives
* and returns their results.
*
* @static
* @memberOf _
* @since 4.0.0
* @category Util
* @param {...(Function|Function[])} iteratees The iteratees to invoke.
* @param {...Function} iteratees The iteratees to invoke.
* @returns {Function} Returns the new function.
* @example
*