BUPKIS
    Preparing search index...

    Variable primitiveAssertionConst

    primitiveAssertion: AssertionStandardSchemaSync<
        readonly ["to be a primitive"],
        ZodUnion<
            readonly [
                ZodString,
                ZodNumber,
                ZodBoolean,
                ZodBigInt,
                ZodSymbol,
                ZodNull,
                ZodUndefined,
            ],
        >,
        never,
    > = ...

    Asserts that the subject is a primitive value (string, number, boolean, null, undefined, symbol, or bigint).

    expect('hello', 'to be a primitive'); // passes
    expect({}, 'to be a primitive'); // fails