BUPKIS
    Preparing search index...

    Variable objectAssertionConst

    objectAssertion: AssertionStandardSchemaSync<
        readonly ["to be an object"],
        ZodNonOptional<ZodUnknown>,
        never,
    > = ...

    Asserts that the subject is an object (non-null object type).

    expect({}, 'to be an object'); // passes
    expect(null, 'to be an object'); // fails
    expect('string', 'to be an object'); // fails