BUPKIS
    Preparing search index...

    Variable stringLessThanAssertionConst

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

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

    expect('a', 'to be less than', 'b'); // passes
    expect('banana', 'to be less than', 'apple'); // fails