BUPKIS
    Preparing search index...

    Variable strictEqualityAssertionConst

    strictEqualityAssertion: AssertionFunctionSync<
        readonly [
            readonly [
                "to be",
                "to equal",
                "equals",
                "is",
                "is equal to",
                "to strictly equal",
                "is strictly equal to",
            ],
            ZodUnknown,
        ],
        (
            subject: unknown,
            value: unknown,
        ) => { actual: unknown; expected: unknown; message: string } | undefined,
        readonly [
            ZodUnknown,
            PhraseLiteralChoiceSlot<
                readonly [
                    "to be",
                    "to equal",
                    "equals",
                    "is",
                    "is equal to",
                    "to strictly equal",
                    "is strictly equal to",
                ],
            >,
            ZodUnknown,
        ],
    > = ...

    Assertion for testing strict equality between two values.

    expect(42, 'to be', 42); // passes
    expect('hello', 'to equal', 'hello'); // passes
    expect({}, 'to be', {}); // fails (different object references)