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

@@ -8,23 +8,22 @@ const MAX_INTEGER = 1.7976931348623157e+308;
* Converts `value` to a finite number.
*
* @static
* @memberOf _
* @since 4.12.0
* @category Lang
* @param {*} value The value to convert.
* @returns {number} Returns the converted number.
* @example
*
* _.toFinite(3.2);
* toFinite(3.2);
* // => 3.2
*
* _.toFinite(Number.MIN_VALUE);
* toFinite(Number.MIN_VALUE);
* // => 5e-324
*
* _.toFinite(Infinity);
* toFinite(Infinity);
* // => 1.7976931348623157e+308
*
* _.toFinite('3.2');
* toFinite('3.2');
* // => 3.2
*/
function toFinite(value) {