All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.lodash.isNull.js Maven / Gradle / Ivy

There is a newer version: 3.3.1
Show newest version
/**
 * 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;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy