BUPKIS
    Preparing search index...

    Variable nonEmptyArrayAssertionConst

    nonEmptyArrayAssertion: AssertionStandardSchemaSync<
        readonly [ZodArray<ZodUnknown>, "to be non-empty"],
        ZodArray<ZodUnknown>,
        readonly [ZodArray<ZodUnknown>, PhraseLiteralSlot<"to be non-empty">],
    > = ...

    Asserts that an array is non-empty.

    expect([1, 2, 3], 'to be non-empty'); // passes
    expect([], 'to be non-empty'); // fails

    array-not-to-be-empty

    collections