From e253fe05473c6c378026211c77ad1c5547a8f41b Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Fri, 21 Aug 2015 08:28:49 -0700 Subject: [PATCH] Use `nullish` to describe `_.isNil`. [ci skip] --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index c95d1450b..28e657e71 100644 --- a/lodash.js +++ b/lodash.js @@ -8280,7 +8280,7 @@ * @memberOf _ * @category Lang * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is `null` or `undefined`, else `false`. + * @returns {boolean} Returns `true` if `value` is nullish, else `false`. * @example * * _.isNil(null);