UNPKG

xml-lite

Version:

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

10 lines (8 loc) 208 B
'use strict'; /** * dom2json module * @module dom2json * @see module:index */ const dom2js = require('./dom2js'); module.exports = (dom, replacer, space) => JSON.stringify(dom2js(dom), replacer, space);