* Checks if the current tag is a void element. Override this if you want * to specify your own additional void elements. * @param name Name of the pseudo selector.
(name: string)
| 343 | * @param name Name of the pseudo selector. |
| 344 | */ |
| 345 | protected isVoidElement(name: string): boolean { |
| 346 | return this.htmlMode && voidElements.has(name); |
| 347 | } |
| 348 | |
| 349 | /** |
| 350 | * Read a tag name from the buffer. |
no outgoing calls
no test coverage detected