BUPKIS
    Preparing search index...

    Variable stringAssertionConst

    stringAssertion: AssertionStandardSchemaSync<
        readonly ["to be a string"],
        ZodString,
        never,
    > = ...

    Asserts that the subject is a string value.

    expect('hello', 'to be a string'); // passes
    expect(42, 'to be a string'); // fails

    unknown-to-be-a-string

    primitives