BUPKIS
    Preparing search index...

    Variable numberLessThanOrEqualAssertionConst

    numberLessThanOrEqualAssertion: AssertionFunctionSync<
        readonly [
            ZodNumber,
            readonly ["to be less than or equal to", "to be at most", "to be lte"],
            ZodNumber,
        ],
        (_: number, other: number) => ZodNumber,
        readonly [
            ZodNumber,
            PhraseLiteralChoiceSlot<
                readonly ["to be less than or equal to", "to be at most", "to be lte"],
            >,
            ZodNumber,
        ],
    > = ...

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

    expect(3, 'to be less than or equal to', 5); // passes
    expect(5, 'to be at most', 5); // passes
    expect(7, 'to be at most', 5); // fails