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

@@ -16,17 +16,16 @@ const nativeMin = Math.min;
*
* @static
* @since 0.1.0
* @memberOf _
* @category Util
* @param {number} n The number of times to invoke `iteratee`.
* @param {Function} iteratee The function invoked per iteration.
* @returns {Array} Returns the array of results.
* @example
*
* _.times(3, String);
* times(3, String);
* // => ['0', '1', '2']
*
* _.times(4, _.constant(0));
* times(4, constant(0));
* // => [0, 0, 0, 0]
*/
function times(n, iteratee) {