MCPcopy Index your code
hub / github.com/angular/angular / childNodesAsList

Function childNodesAsList

packages/private/testing/src/browser_utils.ts:142–149  ·  view source on GitHub ↗
(el: Node)

Source from the content-addressed store, hash-verified

140}
141
142export 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}

Callers 1

elementTextFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…