@hexafuchs/what.js
    Preparing search index...

    Variable isNullishConst Alias

    isNullish: (value: unknown) => boolean = isMissing

    Type declaration

      • (value: unknown): boolean
      • Returns if the value is considered missing.

        This includes everything that can be converted with String(value) and has one of these values in lowercase:

        • null
        • undefined
        • none
        • '' (empty string)

        Parameters

        • value: unknown

        Returns boolean