Version 1
[yaffs-website] / node_modules / uncss / node_modules / lodash / isNil.js
diff --git a/node_modules/uncss/node_modules/lodash/isNil.js b/node_modules/uncss/node_modules/lodash/isNil.js
new file mode 100644 (file)
index 0000000..c4197fb
--- /dev/null
@@ -0,0 +1,24 @@
+/**
+ * Checks if `value` is `null` or `undefined`.
+ *
+ * @static
+ * @memberOf _
+ * @category Lang
+ * @param {*} value The value to check.
+ * @returns {boolean} Returns `true` if `value` is nullish, else `false`.
+ * @example
+ *
+ * _.isNil(null);
+ * // => true
+ *
+ * _.isNil(void 0);
+ * // => true
+ *
+ * _.isNil(NaN);
+ * // => false
+ */
+function isNil(value) {
+  return value == null;
+}
+
+module.exports = isNil;