A module for xml report to json report converting
npm install pivot-xml-report-converterhtml
`
$3
#### Installation
`bash
$ npm install pivot-xml-report-converter
`
#### Examples
`js
var converter = require('pivot-xml-report-converter');
var xml = '' +
'' +
'https://s3.amazonaws.com/flexmonster/2.3/data/data.csv ' +
' ' +
' ';
var json = converter(xml);
console.log(json);
`
The xml is type of String.
In index.js you can find the example with reading a local .XML file and passing the String` data to the converter.