BUPKIS
    Preparing search index...

    Variable mapEntryAssertionConst

    mapEntryAssertion: AssertionFunctionSync<
        readonly [
            ZodUnion<
                [
                    ZodCustom<Map<unknown, unknown>, Map<unknown, unknown>>,
                    ZodCustom<WeakMap<WeakKey, unknown>, WeakMap<WeakKey, unknown>>,
                ],
            >,
            readonly [
                "to have entry",
                "to have key/value pair",
                "to contain entry",
                "to contain key/value pair",
                "to include entry",
                "to include key/value pair",
            ],
            ZodTuple<[ZodUnknown, ZodUnknown], null>,
        ],
        (
            map: Map<unknown, unknown> | WeakMap<WeakKey, unknown>,
            __namedParameters: [unknown, unknown],
        ) =>
            | { actual?: undefined; expected?: undefined; message: string }
            | { actual: unknown[] | undefined; expected: unknown[]; message: string }
            | undefined,
        readonly [
            ZodUnion<
                [
                    ZodCustom<Map<unknown, unknown>, Map<unknown, unknown>>,
                    ZodCustom<WeakMap<WeakKey, unknown>, WeakMap<WeakKey, unknown>>,
                ],
            >,
            PhraseLiteralChoiceSlot<
                readonly [
                    "to have entry",
                    "to have key/value pair",
                    "to contain entry",
                    "to contain key/value pair",
                    "to include entry",
                    "to include key/value pair",
                ],
            >,
            ZodTuple<[ZodUnknown, ZodUnknown], null>,
        ],
    > = ...

    Asserts that a Map has a specific key-value entry.

    const map = new Map([['key', 'value']]);
    expect(map, 'to have entry', ['key', 'value']); // passes
    expect(map, 'to have entry', ['key', 'wrong']); // fails

    map-to-have-entry-any-any

    collections