(html: any)
| 134 | } |
| 135 | |
| 136 | export function createTemplate(html: any): HTMLElement { |
| 137 | const t = getDOM().getDefaultDocument().createElement('template'); |
| 138 | t.innerHTML = html; |
| 139 | return t; |
| 140 | } |
| 141 | |
| 142 | export function childNodesAsList(el: Node): any[] { |
| 143 | const childNodes = el.childNodes; |
no test coverage detected
searching dependent graphs…