1
0
mirror of https://github.com/svg/svgo.git synced 2025-09-14 09:49:20 +03:00
Files
svgo/test/plugins/removeEmptyAttrs.01.svg
Bogdan Chadkin 4377ea38c4 Refactor removeEmptyAttrs (#1594)
- migrated to visitor plugin api
- covered with tsdoc
2021-10-07 14:07:06 +03:00

14 lines
169 B
XML

Removes empty attributes
===
<svg xmlns="http://www.w3.org/2000/svg">
<g attr1="" attr2=""/>
</svg>
@@@
<svg xmlns="http://www.w3.org/2000/svg">
<g/>
</svg>