Son CV dans un terminal web en Javascript!
https://terminal-cv.gregandev.fr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
381 B
23 lines
381 B
1 year ago
|
/**
|
||
|
* Checks if `value` is `null`.
|
||
|
*
|
||
|
* @static
|
||
|
* @memberOf _
|
||
|
* @since 0.1.0
|
||
|
* @category Lang
|
||
|
* @param {*} value The value to check.
|
||
|
* @returns {boolean} Returns `true` if `value` is `null`, else `false`.
|
||
|
* @example
|
||
|
*
|
||
|
* _.isNull(null);
|
||
|
* // => true
|
||
|
*
|
||
|
* _.isNull(void 0);
|
||
|
* // => false
|
||
|
*/
|
||
|
function isNull(value) {
|
||
|
return value === null;
|
||
|
}
|
||
|
|
||
|
module.exports = isNull;
|