Bump to v4.7.0.

This commit is contained in:
John-David Dalton
2016-03-25 23:47:49 -07:00
parent 501d6b1d41
commit 18d0f1d873
419 changed files with 4042 additions and 2066 deletions

View File

@@ -1,6 +1,6 @@
var arrayEach = require('./_arrayEach'),
baseCastFunction = require('./_baseCastFunction'),
baseEach = require('./_baseEach'),
baseIteratee = require('./_baseIteratee'),
isArray = require('./isArray');
/**
@@ -8,12 +8,13 @@ var arrayEach = require('./_arrayEach'),
* The iteratee is invoked with three arguments: (value, index|key, collection).
* Iteratee functions may exit iteration early by explicitly returning `false`.
*
* **Note:** As with other "Collections" methods, objects with a "length" property
* are iterated like arrays. To avoid this behavior use `_.forIn` or `_.forOwn`
* for object iteration.
* **Note:** As with other "Collections" methods, objects with a "length"
* property are iterated like arrays. To avoid this behavior use `_.forIn`
* or `_.forOwn` for object iteration.
*
* @static
* @memberOf _
* @since 0.1.0
* @alias each
* @category Collection
* @param {Array|Object} collection The collection to iterate over.
@@ -24,17 +25,17 @@ var arrayEach = require('./_arrayEach'),
* _([1, 2]).forEach(function(value) {
* console.log(value);
* });
* // => logs `1` then `2`
* // => Logs `1` then `2`.
*
* _.forEach({ 'a': 1, 'b': 2 }, function(value, key) {
* console.log(key);
* });
* // => logs 'a' then 'b' (iteration order is not guaranteed)
* // => Logs 'a' then 'b' (iteration order is not guaranteed).
*/
function forEach(collection, iteratee) {
return (typeof iteratee == 'function' && isArray(collection))
? arrayEach(collection, iteratee)
: baseEach(collection, baseCastFunction(iteratee));
: baseEach(collection, baseIteratee(iteratee));
}
module.exports = forEach;