BUPKIS
    Preparing search index...

    Variable stringLessThanOrEqualAssertionConst

    stringLessThanOrEqualAssertion: AssertionFunctionSync<
        readonly [ZodString, "to be less than or equal to", ZodString],
        (subject: string, other: string) => { message: string } | undefined,
        readonly [
            ZodString,
            PhraseLiteralSlot<"to be less than or equal to">,
            ZodString,
        ],
    > = ...

    Assertion for testing if a string is lexicographically less than or equal to another string.

    expect('a', 'to be less than or equal to', 'b'); // passes
    expect('a', 'to be less than or equal to', 'a'); // passes
    expect('b', 'to be less than or equal to', 'a'); // fails