Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
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
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
}
Callers
1
elementText
Function · 0.90
Calls
no outgoing calls
Tested by
no test coverage detected