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

@@ -19,7 +19,6 @@ const nativeRandom = Math.random;
* floating-point values which can produce unexpected results.
*
* @static
* @memberOf _
* @since 0.7.0
* @category Number
* @param {number} [lower=0] The lower bound.
@@ -28,16 +27,16 @@ const nativeRandom = Math.random;
* @returns {number} Returns the random number.
* @example
*
* _.random(0, 5);
* random(0, 5);
* // => an integer between 0 and 5
*
* _.random(5);
* random(5);
* // => also an integer between 0 and 5
*
* _.random(5, true);
* random(5, true);
* // => a floating-point number between 0 and 5
*
* _.random(1.2, 5.2);
* random(1.2, 5.2);
* // => a floating-point number between 1.2 and 5.2
*/
function random(lower, upper, floating) {