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

@@ -7,23 +7,22 @@ import toFinite from './toFinite.js';
* [`ToInteger`](http://www.ecma-international.org/ecma-262/7.0/#sec-tointeger).
*
* @static
* @memberOf _
* @since 4.0.0
* @category Lang
* @param {*} value The value to convert.
* @returns {number} Returns the converted integer.
* @example
*
* _.toInteger(3.2);
* toInteger(3.2);
* // => 3
*
* _.toInteger(Number.MIN_VALUE);
* toInteger(Number.MIN_VALUE);
* // => 0
*
* _.toInteger(Infinity);
* toInteger(Infinity);
* // => 1.7976931348623157e+308
*
* _.toInteger('3.2');
* toInteger('3.2');
* // => 3
*/
function toInteger(value) {