UNPKG

xml-lite

Version:

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

11 lines (9 loc) 202 B
'use strict'; /** * xml2js module * @module xml2js * @see module:index */ const xml = require('./xml-lite'); const dom2js = require('./dom2js'); module.exports = (text) => dom2js(xml.parse(text));