BUPKIS
    Preparing search index...

    Variable nonEmptyStringAssertionConst

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

    Asserts that a string is non-empty.

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