RSS Git Download  Clone
Raw View History
Blames found: 1 Mode: javascript Binary: false


Hang on, we reloading big blames...
var parser = require('./index'); // xml to json var xml = "<foo attr=\"value\">bar</foo>"; console.log("input -> %s", xml) var json = parser.toJson(xml); console.log("to json -> %s", json); var xml = parser.toXml(json); console.log("back to xml -> %s", xml)