(tagName: string, schemaMetas: any[])
| 35 | } |
| 36 | |
| 37 | hasElement(tagName: string, schemaMetas: any[]): boolean { |
| 38 | const value = this.existingElements[tagName.toLowerCase()]; |
| 39 | return value === void 0 ? true : value; |
| 40 | } |
| 41 | |
| 42 | allKnownElementNames(): string[] { |
| 43 | return Object.keys(this.existingElements); |
no outgoing calls
no test coverage detected