Use nullish to describe _.isNil. [ci skip]

This commit is contained in:
John-David Dalton
2015-08-21 08:28:49 -07:00
parent e35d73be8f
commit e253fe0547

View File

@@ -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);