parseXmlString() — astro Function Reference
Architecture documentation for the parseXmlString() function in test-utils.js from the astro codebase.
Entity Profile
Dependency Diagram
graph TD bb9083b9_c653_4ab7_b907_44654ad91d57["parseXmlString()"] a937f291_aca0_972e_b1ce_ba5bbe7ea3d3["test-utils.js"] bb9083b9_c653_4ab7_b907_44654ad91d57 -->|defined in| a937f291_aca0_972e_b1ce_ba5bbe7ea3d3 022aa569_1f3b_3226_5a1f_3e6d3955b58e["assertXmlDeepEqual()"] 022aa569_1f3b_3226_5a1f_3e6d3955b58e -->|calls| bb9083b9_c653_4ab7_b907_44654ad91d57 style bb9083b9_c653_4ab7_b907_44654ad91d57 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
packages/astro-rss/test/test-utils.js lines 63–69
export function parseXmlString(xmlString) {
let res;
parser.parseString(xmlString, (err, result) => {
res = { err, result };
});
return res;
}
Domain
Subdomains
Defined In
Called By
Source
Frequently Asked Questions
What does parseXmlString() do?
parseXmlString() is a function in the astro codebase, defined in packages/astro-rss/test/test-utils.js.
Where is parseXmlString() defined?
parseXmlString() is defined in packages/astro-rss/test/test-utils.js at line 63.
What calls parseXmlString()?
parseXmlString() is called by 1 function(s): assertXmlDeepEqual.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free