Add _.parseInt used with _.map doc example. [ci skip]

This commit is contained in:
John-David Dalton
2015-01-02 14:17:57 -06:00
parent 30b1445195
commit ebc08fd6f5

View File

@@ -9458,6 +9458,9 @@
*
* _.parseInt('08');
* // => 8
*
* _.map(['6', '08', '10'], _.parseInt);
* // => [6, 8, 10]
*/
function parseInt(string, radix, guard) {
if (guard && isIterateeCall(string, radix, guard)) {