UNPKG

197 BJavaScriptView Raw
1'use strict';
2/**
3 * xml2js module
4 * @module xml2js
5 * @see module:index
6 */
7const xml = require('./xml');
8const dom2js = require('./dom2js');
9
10module.exports = (text) => dom2js(xml.parse(text));