BUPKIS
    Preparing search index...

    Variable truthyAssertionConst

    truthyAssertion: AssertionStandardSchemaSync<
        readonly [readonly ["to be truthy", "to exist", "to be ok"]],
        ZodNonOptional<ZodAny>,
        never,
    > = ...

    Asserts that the subject is truthy (not false, 0, '', null, undefined, or NaN).

    expect('hello', 'to be truthy'); // passes
    expect('', 'to be truthy'); // fails