Skip to content

Instantly share code, notes, and snippets.

View lhalvesf's full-sized avatar

Luiz H. A. Ferreira lhalvesf

View GitHub Profile
@chinchang
chinchang / xmlToJson.js
Last active September 7, 2023 02:39
Function to convert XML to JSON
/**
* Changes XML to JSON
* Modified version from here: http://davidwalsh.name/convert-xml-json
* @param {string} xml XML DOM tree
*/
function xmlToJson(xml) {
// Create the return object
var obj = {};
if (xml.nodeType == 1) {