UNPKG

210 BJavaScriptView Raw
1'use strict';
2/**
3 * xml2json module
4 * @module xml2json
5 * @see module:index
6 */
7const xml2js = require('./xml2js');
8
9module.exports = (text, replacer, space) => JSON.stringify(xml2js(text), replacer, space);