UNPKG

crnc

Version:

currency conversion and functionality for the web

8 lines 272 B
export async function requestXml(link) { const response = await fetch(link); const text = await response.text(); const parser = new DOMParser(); const xml = parser.parseFromString(text, "text/xml"); return xml; } //# sourceMappingURL=request-xml.js.map