(element: any)
| 130 | } |
| 131 | |
| 132 | export function sortedClassList(element: any): any[] { |
| 133 | return Array.prototype.slice.call(element.classList, 0).sort(); |
| 134 | } |
| 135 | |
| 136 | export function createTemplate(html: any): HTMLElement { |
| 137 | const t = getDOM().getDefaultDocument().createElement('template'); |
no outgoing calls
no test coverage detected
searching dependent graphs…