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

@@ -14,7 +14,6 @@ const hasOwnProperty = objectProto.hasOwnProperty;
* iteratee is invoked with one argument: (value).
*
* @static
* @memberOf _
* @since 0.5.0
* @category Collection
* @param {Array|Object} collection The collection to iterate over.
@@ -22,7 +21,7 @@ const hasOwnProperty = objectProto.hasOwnProperty;
* @returns {Object} Returns the composed aggregate object.
* @example
*
* _.countBy([6.1, 4.2, 6.3], Math.floor);
* countBy([6.1, 4.2, 6.3], Math.floor);
* // => { '4': 1, '6': 2 }
*/
const countBy = createAggregator((result, value, key) => {