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

Function toString

packages/core/test/render3/matchers.ts:186–193  ·  view source on GitHub ↗
(attrs: NamedNodeMap)

Source from the content-addressed store, hash-verified

184 };
185
186 function toString(attrs: NamedNodeMap) {
187 let text = '';
188 for (let i = 0; i < attrs.length; i++) {
189 const attr = attrs[i];
190 text += ` ${attr.name}=${JSON.stringify(attr.value)}`;
191 }
192 return text;
193 }
194
195 return matcher;
196}

Callers 1

matchDomElementFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…