(p: SVGPathElement, an: string, av: string)
| 203 | const pathElements: SVGPathElement[] = []; |
| 204 | let totalLength = 0; |
| 205 | const setAttr = (p: SVGPathElement, an: string, av: string) => p.setAttribute(an, av); |
| 206 | |
| 207 | for (const d of pathStrings) { |
| 208 | const path = document.createElementNS(SVG_NS, 'path'); |
no outgoing calls
no test coverage detected
searching dependent graphs…