mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-09 02:17:50 +00:00
Remove references to _.
This commit is contained in:
11
forEach.js
11
forEach.js
@@ -8,26 +8,25 @@ import isArray from './isArray.js';
|
||||
* 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.
|
||||
* 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.
|
||||
* @param {Function} iteratee The function invoked per iteration.
|
||||
* @returns {Array|Object} Returns `collection`.
|
||||
* @see _.forEachRight
|
||||
* @see forEachRight
|
||||
* @example
|
||||
*
|
||||
* _.forEach([1, 2], function(value) {
|
||||
* forEach([1, 2], function(value) {
|
||||
* console.log(value);
|
||||
* });
|
||||
* // => Logs `1` then `2`.
|
||||
*
|
||||
* _.forEach({ 'a': 1, 'b': 2 }, function(value, key) {
|
||||
* forEach({ 'a': 1, 'b': 2 }, function(value, key) {
|
||||
* console.log(key);
|
||||
* });
|
||||
* // => Logs 'a' then 'b' (iteration order is not guaranteed).
|
||||
|
||||
Reference in New Issue
Block a user