This file ( 3kB ) exceeds the allowed full mode (48 kb) size.
The editor full hight is disabled, only scrolling is allowed..
If you wish to edit a file, it is recommended to use the scroll mode as some users do not like the full height
mode, although some users like it.
var expat = require('node-expat');
var fs = require('fs');
var parser = new expat.Parser('UTF-8');
// This object will hold the final result.
var obj = {};
var currentObject = obj;
var ancestors = [];
var options = {}; //configuration options
function startElement(name, attrs) {
if (! (name in currentObject)) {
currentObject[name] = attrs;
} else if (! (currentObject[name] instanceof Array)) {
// Put the existing object in an array.
var newArray = [currentObject[name]];
// Add the new object to the array.
newArray.push(attrs);
// Point to the new array.
currentObject[name] = newArray;
} else {
// An array already exists, push the attributes on to it.
currentObject[name].push(attrs);
}
// Store the current (old) parent.
ancestors.push(currentObject);
// We are now working with this object, so it becomes the current parent.
if (currentObject[name] instanceof Array) {
// If it is an array, get the last element of the array.
currentObject = currentObject[name][currentObject[name].length - 1];
} else {
// Otherwise, use the object itself.
currentObject = currentObject[name];
}
}
function text(data) {
data = data.trim();
if (!data.length) {
return;
}
currentObject['$t'] = data;
}
function endElement(name) {
// This should check to make sure that the name we're ending
// matches the name we started on.
var ancestor = ancestors.pop();
if (!options.reversible) {
if ((Object.keys(currentObject).length == 1) && ('$t' in currentObject)) {
if (ancestor[name] instanceof Array) {
//console.log("list-replacing $t in " + name);
ancestor[name].push(ancestor[name].pop()['$t']);
} else {
//console.log("replacing $t in " + name);
ancestor[name] = currentObject['$t'];
}
} else {
//console.log("final " + name + ":");
//console.log(currentObject);
}
}
currentObject = ancestor;
}
parser.on('startElement', startElement);
parser.on('text', text);
parser.on('endElement', endElement);
module.exports.toJson = function(xml, _options) {
options = null;
options = {
object: false,
reversible: false
}
for (var opt in _options) {
options[opt] = _options[opt];
}
if (parser.parse(xml)) {
if (options.object) {
return obj;
}
return JSON.stringify(obj);
}
};