(attrs: NamedNodeMap)
| 184 | }; |
| 185 | |
| 186 | function toString(attrs: NamedNodeMap) { |
| 187 | let text = ''; |
| 188 | for (let i = 0; i < attrs.length; i++) { |
| 189 | const attr = attrs[i]; |
| 190 | text += ` ${attr.name}=${JSON.stringify(attr.value)}`; |
| 191 | } |
| 192 | return text; |
| 193 | } |
| 194 | |
| 195 | return matcher; |
| 196 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…