BUPKIS
    Preparing search index...

    Variable emptyStringAssertionConst

    emptyStringAssertion: AssertionStandardSchemaSync<
        readonly [ZodString, "to be empty"],
        ZodString,
        readonly [ZodString, PhraseLiteralSlot<"to be empty">],
    > = ...

    Asserts that a string is empty.

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