(el: Node)
| 111 | } |
| 112 | |
| 113 | export function templateAwareRoot(el: Node): any { |
| 114 | return getDOM().isElementNode(el) && el.nodeName === 'TEMPLATE' ? getContent(el) : el; |
| 115 | } |
| 116 | |
| 117 | export function setCookie(name: string, value: string) { |
| 118 | // document.cookie is magical, assigning into it assigns/overrides one cookie value, but does |
no test coverage detected
searching dependent graphs…