## About This is a wrapped version of `xml2json` that will remove "&" characters before parsing the xml and then add them back after.
npm install @unicity/xml-parserxml2json that will remove "&" characters before parsing the xml and then add them back after.``javascript
const XML = require('@unicity/xml-parser');
;
const options = {
object : true
};
const dataObject = XML.parse(xml, options);
``