@pathmaker-digital/pmd-utilities - v2.2.6
    Preparing search index...

    Function isNullish

    • Checks if a value is null or undefined.

      Parameters

      • value: unknown

        The value to check.

      Returns value is undefined | null

      True if the value is null or undefined.

      isNullish(null);        // true
      isNullish(undefined); // true
      isNullish(""); // false