From 99b7613206b7beb81ae0d68e2898cbb44c553c59 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Fri, 26 Dec 2014 22:15:39 -0600 Subject: [PATCH] Clarify `_.isEmpty` doc. [ci skip] --- lodash.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lodash.js b/lodash.js index f888ac31a..ee63a3935 100644 --- a/lodash.js +++ b/lodash.js @@ -7730,9 +7730,9 @@ } /** - * Checks if a collection is empty. A value is considered empty unless it is - * an array-like value with a length greater than `0` or an object with own - * enumerable properties. + * Checks if a value is empty. A value is considered empty unless it is an + * `arguments` object, array, string, or jQuery-like collection with a length + * greater than `0` or an object with own enumerable properties. * * @static * @memberOf _