UNPKG

xml-lite

Version:

maintaining xml in pure javascript (IN BOTH NODE.JS & BROWSERS)

10 lines (8 loc) 210 B
'use strict'; /** * xml2json module * @module xml2json * @see module:index */ const xml2js = require('./xml2js'); module.exports = (text, replacer, space) => JSON.stringify(xml2js(text), replacer, space);