Permalink
Cannot retrieve contributors at this time
/** | |
* Checks if `value` is `null` or `undefined`. | |
* | |
* @since 4.0.0 | |
* @category Lang | |
* @param {*} value The value to check. | |
* @returns {boolean} Returns `true` if `value` is nullish, else `false`. | |
* @example | |
* | |
* isNil(null) | |
* // => true | |
* | |
* isNil(void 0) | |
* // => true | |
* | |
* isNil(NaN) | |
* // => false | |
*/ | |
function isNil(value) { | |
return value == null | |
} | |
export default isNil |