mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
0e35829580
Using raw objects as a lookup structure will inadvertently find methods defined on `Object`, where strings are expected. This causes errors downstream when string operations are applied on functions. This commit switches over to use `Map`s in the DOM element schema registry to fix this category of issues. Fixes #46936 PR Close #47220