Logos DX
    Preparing search index...

    Type Alias Falsy

    Falsy: number | false | "" | bigint | null | undefined

    Union of all JavaScript falsy values.

    Comprehensive type for conditional logic, validation functions, and type guards that need to handle all falsy cases.

    function isFalsy(value: unknown): value is Falsy
    function removeEmpty<T>(arr: (T | Falsy)[]): T[]