* A tagged template literal helper to generate static DOM trees. * This must be used as a tagged template, ie * * ``` * const div = html` `; * ``` * * Only the root element and its subtree will be returned. DO NOT use this to * render subtree's with dynamic content, it
(strings)
| 70 | * @return {HTMLElement} |
| 71 | */ |
| 72 | function html(strings) { |
| 73 | return createNode(htmlContainer, strings); |
| 74 | } |
| 75 | |
| 76 | /** |
| 77 | * Helper used by html and svg string literal functions. |
no test coverage detected