Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

isNil.js 426B

12345678910111213141516171819202122232425
  1. /**
  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. module.exports = isNil;