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,19 +16,18 @@ const nativeParseInt = root.parseInt;
* [ES5 implementation](https://es5.github.io/#x15.1.2.2) of `parseInt`.
*
* @static
* @memberOf _
* @since 1.1.0
* @category String
* @param {string} string The string to convert.
* @param {number} [radix=10] The radix to interpret `value` by.
* @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.
* @param- {Object} [guard] Enables use as an iteratee for methods like `map`.
* @returns {number} Returns the converted integer.
* @example
*
* _.parseInt('08');
* parseInt('08');
* // => 8
*
* _.map(['6', '08', '10'], _.parseInt);
* map(['6', '08', '10'], parseInt);
* // => [6, 8, 10]
*/
function parseInt(string, radix, guard) {