BUPKIS
    Preparing search index...

    Variable falsyAssertionConst

    falsyAssertion: AssertionStandardSchemaSync<
        readonly ["to be falsy"],
        ZodNullable<ZodAny>,
        never,
    > = ...

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

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