(children, attributes)
| 1289 | |
| 1290 | class SvgNode { |
| 1291 | constructor(children, attributes) { |
| 1292 | this.children = void 0; |
| 1293 | this.attributes = void 0; |
| 1294 | this.children = children || []; |
| 1295 | this.attributes = attributes || {}; |
| 1296 | } |
| 1297 | |
| 1298 | toNode() { |
| 1299 | const svgNS = "http://www.w3.org/2000/svg"; |
nothing calls this directly
no outgoing calls
no test coverage detected