source: imaps-frontend/node_modules/lodash-es/isNull.js

main
Last change on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 379 bytes
Line 
1/**
2 * Checks if `value` is `null`.
3 *
4 * @static
5 * @memberOf _
6 * @since 0.1.0
7 * @category Lang
8 * @param {*} value The value to check.
9 * @returns {boolean} Returns `true` if `value` is `null`, else `false`.
10 * @example
11 *
12 * _.isNull(null);
13 * // => true
14 *
15 * _.isNull(void 0);
16 * // => false
17 */
18function isNull(value) {
19 return value === null;
20}
21
22export default isNull;
Note: See TracBrowser for help on using the repository browser.