(n: any)
| 193 | |
| 194 | function elementText(n: any): string { |
| 195 | const hasNodes = (n: any) => { |
| 196 | const children = n.childNodes; |
| 197 | return children && children.length > 0; |
| 198 | }; |
| 199 | |
| 200 | if (n instanceof Array) { |
| 201 | return n.map(elementText).join(''); |
no outgoing calls
no test coverage detected
searching dependent graphs…