(html: string)
| 23 | } |
| 24 | |
| 25 | export function el(html: string): HTMLElement { |
| 26 | return <HTMLElement>getContent(createTemplate(html)).firstChild; |
| 27 | } |
| 28 | |
| 29 | function getAttributeMap(element: any): Map<string, string> { |
| 30 | const res = new Map<string, string>(); |
no test coverage detected