UNPKG

573 BJavaScriptView Raw
1var _curry1 =
2/*#__PURE__*/
3require("./internal/_curry1");
4/**
5 * Checks if the input value is `null` or `undefined`.
6 *
7 * @func
8 * @memberOf R
9 * @since v0.9.0
10 * @category Type
11 * @sig * -> Boolean
12 * @param {*} x The value to test.
13 * @return {Boolean} `true` if `x` is `undefined` or `null`, otherwise `false`.
14 * @example
15 *
16 * R.isNil(null); //=> true
17 * R.isNil(undefined); //=> true
18 * R.isNil(0); //=> false
19 * R.isNil([]); //=> false
20 */
21
22
23var isNil =
24/*#__PURE__*/
25_curry1(function isNil(x) {
26 return x == null;
27});
28
29module.exports = isNil;
\No newline at end of file