* Removes an existing ` ` tag element from the current HTML document. * @param meta The tag definition to match against to identify an existing tag.
(meta: HTMLMetaElement)
| 147 | * @param meta The tag definition to match against to identify an existing tag. |
| 148 | */ |
| 149 | removeTagElement(meta: HTMLMetaElement): void { |
| 150 | if (meta) { |
| 151 | this._dom.remove(meta); |
| 152 | } |
| 153 | } |
| 154 | |
| 155 | private _getOrCreateElement( |
| 156 | meta: MetaDefinition, |
no test coverage detected