From e24513e6e2675a0d706251b3662df183a1f14ef9 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Mon, 22 Feb 2016 12:19:08 -0800 Subject: [PATCH] Clarify `_.isEmpty` docs. [ci skip] --- lodash.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lodash.js b/lodash.js index b8f8ae91b..533710171 100644 --- a/lodash.js +++ b/lodash.js @@ -9781,9 +9781,9 @@ } /** - * Checks if `value` is empty. A value is considered empty unless it's an - * `arguments` object, array, string, or jQuery-like collection with a length - * greater than `0` or an object with own enumerable properties. + * Checks if `value` is an empty collection or object. A value is considered + * empty if it's an `arguments` object, array, string, or jQuery-like collection + * with a length of `0` or has no own enumerable properties. * * @static * @memberOf _