From 26299eb364254cbb61a141f3f6b0c55a425e8fee Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Mon, 22 Feb 2016 10:24:20 -0800 Subject: [PATCH] Update `_.isEmpty` doc param type for `value`. [ci skip] --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index f1860f123..b8f8ae91b 100644 --- a/lodash.js +++ b/lodash.js @@ -9788,7 +9788,7 @@ * @static * @memberOf _ * @category Lang - * @param {Array|Object|string} value The value to inspect. + * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is empty, else `false`. * @example *