| 87 | }; |
| 88 | |
| 89 | const isspace = c => c === ' ' || c === '\n'; |
| 90 | const isclosing = c => c === '>' || c === '/'; |
| 91 | |
| 92 | const isVoidEl = (name = this.currentName) => VOID_ELEMENTS.includes(name); |
nothing calls this directly
no outgoing calls
no test coverage detected