(a: Map<string, string>, b: Map<string, string>)
| 933 | } |
| 934 | |
| 935 | function 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 | |
| 947 | function resolveCssVars( |
| 948 | instance: ComponentInternalInstance, |