* 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)
| 155 | * @param meta The tag definition to match against to identify an existing tag. |
| 156 | */ |
| 157 | removeTagElement(meta: HTMLMetaElement): void { |
| 158 | if (meta) { |
| 159 | this._dom.remove(meta); |
| 160 | } |
| 161 | } |
| 162 | |
| 163 | private _getOrCreateElement( |
| 164 | meta: MetaDefinition, |
no test coverage detected