Skip to content

Instantly share code, notes, and snippets.

View jaredjj3's full-sized avatar

Jared Johnson jaredjj3

View GitHub Profile
@jaredjj3
jaredjj3 / xmlToJson.js
Last active April 28, 2024 12:42
Translates an XML document to JSON
function xmlToJson(xml) {
const parser = new DOMParser();
const xmlDoc = parser.parseFromString(xml, "text/xml");
const rootElement = xmlDoc.documentElement;
function parse(node) {
switch (node.nodeType) {
case Node.ELEMENT_NODE:
// Convert attributes to object
const attributes = {};