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

    Variable assertIsNotNullishConst Alias

    assertIsNotNullish: (value: unknown) => void = assertIsNotMissing

    Type declaration

      • (value: unknown): void
      • Alias

        Asserts the value is not considered missing.

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

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

        assertIsNotMissing

        Parameters

        • value: unknown

        Returns void