MCPcopy
hub / github.com/vuejs/core / isMapEqual

Function isMapEqual

packages/runtime-core/src/hydration.ts:935–945  ·  view source on GitHub ↗
(a: Map<string, string>, b: Map<string, string>)

Source from the content-addressed store, hash-verified

933}
934
935function isMapEqual(a: Map<string, string>, b: Map<string, string>): boolean {
936 if (a.size !== b.size) {
937 return false
938 }
939 for (const [key, value] of a) {
940 if (value !== b.get(key)) {
941 return false
942 }
943 }
944 return true
945}
946
947function resolveCssVars(
948 instance: ComponentInternalInstance,

Callers 1

propHasMismatchFunction · 0.85

Calls 1

getMethod · 0.45

Tested by

no test coverage detected