Package Exports
- xmlintojson
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (xmlintojson) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
xmlintojson
This js converts xml string into json object
Instruction
Include/Require the xmlintojson.js file example - var converter = require('./xmlintojson.js');
Pass the xml string to the function and save the json object response var xml = "
"; var json = converter(xml);