From 3004c58798eda5dee7b2138e8ad163b51977d62d Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Thu, 24 Jul 2014 15:23:03 -0700 Subject: [PATCH] Add `guard` param doc to `_.parseInt`. [ci skip] --- lodash.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lodash.js b/lodash.js index 0f01cfdb1..031389236 100644 --- a/lodash.js +++ b/lodash.js @@ -8848,6 +8848,7 @@ * @category Utility * @param {string} value The value to parse. * @param {number} [radix] The radix to interpret `value` by. + * @param- {Object} [guard] Enables use as a callback for functions like `_.map`. * @returns {number} Returns the converted integer. * @example *