guardIESVGBug() — vue Function Reference
Architecture documentation for the guardIESVGBug() function in index.ts from the vue codebase.
Entity Profile
Dependency Diagram
graph TD 11dc788f_ce22_083e_424f_60522906c402["guardIESVGBug()"] bbf88914_62b5_839d_3cfb_85a00fd1d67b["parse()"] bbf88914_62b5_839d_3cfb_85a00fd1d67b -->|calls| 11dc788f_ce22_083e_424f_60522906c402 style 11dc788f_ce22_083e_424f_60522906c402 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
src/compiler/parser/index.ts lines 972–982
function guardIESVGBug(attrs) {
const res: any[] = []
for (let i = 0; i < attrs.length; i++) {
const attr = attrs[i]
if (!ieNSBug.test(attr.name)) {
attr.name = attr.name.replace(ieNSPrefix, '')
res.push(attr)
}
}
return res
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does guardIESVGBug() do?
guardIESVGBug() is a function in the vue codebase.
What calls guardIESVGBug()?
guardIESVGBug() is called by 1 function(s): parse.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free