Remove references to _.

This commit is contained in:
John-David Dalton
2017-01-09 17:38:33 -08:00
parent 65654f8f9e
commit 77cc37ba49
410 changed files with 875 additions and 1157 deletions

View File

@@ -3,21 +3,20 @@ import baseEachRight from './_baseEachRight.js';
import isArray from './isArray.js';
/**
* This method is like `_.forEach` except that it iterates over elements of
* This method is like `forEach` except that it iterates over elements of
* `collection` from right to left.
*
* @static
* @memberOf _
* @since 2.0.0
* @alias eachRight
* @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 _.forEach
* @see forEach
* @example
*
* _.forEachRight([1, 2], function(value) {
* forEachRight([1, 2], function(value) {
* console.log(value);
* });
* // => Logs `2` then `1`.