(options)
| 4 | export default class XMLParser { |
| 5 | |
| 6 | constructor(options) { |
| 7 | this.externalEntities = {}; |
| 8 | this.options = buildOptions(options); |
| 9 | // console.log(this.options) |
| 10 | } |
| 11 | /** |
| 12 | * Parse XML data string to JS object |
| 13 | * @param {string|Buffer} xmlData |
nothing calls this directly
no test coverage detected