mirror of
https://github.com/svg/svgo.git
synced 2025-07-29 20:21:14 +03:00
Remove prefix/local support in elements and attributes (#1413)
These parts of element and attribute name are easy to extract. Now we can easily replace attrs with xast attributes object.
This commit is contained in:
@ -100,9 +100,7 @@ function intersectInheritableAttrs(a, b) {
|
||||
b.hasOwnProperty(n) &&
|
||||
inheritableAttrs.indexOf(n) > -1 &&
|
||||
attr.name === b[n].name &&
|
||||
attr.value === b[n].value &&
|
||||
attr.prefix === b[n].prefix &&
|
||||
attr.local === b[n].local
|
||||
attr.value === b[n].value
|
||||
) {
|
||||
c[n] = attr;
|
||||
}
|
||||
|
Reference in New Issue
Block a user