UNPKG

@n3okill/utils

Version:
8 lines (7 loc) 256 B
/** * Check if two maps have the same keys and values. * @param {T} a - The first map. * @param {U} b - The map to compare to a. * @returns `true` */ export declare function equalMap<T extends Map<unknown, unknown>, U extends T>(a: T, b: U): boolean;