(el: Node)
| 140 | } |
| 141 | |
| 142 | export function childNodesAsList(el: Node): any[] { |
| 143 | const childNodes = el.childNodes; |
| 144 | const res = []; |
| 145 | for (let i = 0; i < childNodes.length; i++) { |
| 146 | res[i] = childNodes[i]; |
| 147 | } |
| 148 | return res; |
| 149 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…