isNullish.js.flow 216 B

12345678
  1. // @flow strict
  2. /**
  3. * Returns true if a value is null, undefined, or NaN.
  4. */
  5. export default function isNullish(value: mixed): boolean %checks {
  6. return value === null || value === undefined || value !== value;
  7. }