(tagName = '', document = null)
| 11 | attrs = {}; |
| 12 | |
| 13 | constructor(tagName = '', document = null) { |
| 14 | Object.assign(this, { tagName, document }); |
| 15 | } |
| 16 | |
| 17 | get childElements() { |
| 18 | return this.children.filter(x => x.tagName !== '#text'); |
nothing calls this directly
no outgoing calls
no test coverage detected