프로젝트

일반

사용자정보

통계
| 개정판:

root / HServer / 00.Server / 00.Program / node_modules / lodash / isNil.js

이력 | 보기 | 이력해설 | 다운로드 (426 Bytes)

1 39 HKM
/**
2
 * Checks if `value` is `null` or `undefined`.
3
 *
4
 * @static
5
 * @memberOf _
6
 * @since 4.0.0
7
 * @category Lang
8
 * @param {*} value The value to check.
9
 * @returns {boolean} Returns `true` if `value` is nullish, else `false`.
10
 * @example
11
 *
12
 * _.isNil(null);
13
 * // => true
14
 *
15
 * _.isNil(void 0);
16
 * // => true
17
 *
18
 * _.isNil(NaN);
19
 * // => false
20
 */
21
function isNil(value) {
22
  return value == null;
23
}
24
25
module.exports = isNil;