From c5f6c43326c432a4cd917230affefa15b4f7bee7 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sun, 14 Feb 2016 08:57:28 -0800 Subject: [PATCH] Add default `wrapper` value to jsdoc of `_.wrap`. [ci skip] --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index df22afca8..b41f326af 100644 --- a/lodash.js +++ b/lodash.js @@ -9202,7 +9202,7 @@ * @memberOf _ * @category Function * @param {*} value The value to wrap. - * @param {Function} wrapper The wrapper function. + * @param {Function} [wrapper=identity] The wrapper function. * @returns {Function} Returns the new function. * @example *