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

@@ -23,23 +23,22 @@ const freeParseInt = parseInt;
* Converts `value` to a number.
*
* @static
* @memberOf _
* @since 4.0.0
* @category Lang
* @param {*} value The value to process.
* @returns {number} Returns the number.
* @example
*
* _.toNumber(3.2);
* toNumber(3.2);
* // => 3.2
*
* _.toNumber(Number.MIN_VALUE);
* toNumber(Number.MIN_VALUE);
* // => 5e-324
*
* _.toNumber(Infinity);
* toNumber(Infinity);
* // => Infinity
*
* _.toNumber('3.2');
* toNumber('3.2');
* // => 3.2
*/
function toNumber(value) {