* Removes all provided elements from the document. * @param elements An array of HTML Elements.
(elements: Iterable<HTMLElement>)
| 35 | * @param elements An array of HTML Elements. |
| 36 | */ |
| 37 | function removeElements(elements: Iterable<HTMLElement>): void { |
| 38 | for (const element of elements) { |
| 39 | element.remove(); |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | /** |
| 44 | * Creates a `style` element with the provided inline style content. |
no test coverage detected
searching dependent graphs…