UNPKG

xml-lite

Version:

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

10 lines (8 loc) 190 B
'use strict'; /** * json2xml module * @module json2xml * @see module:index */ const js2xml = require('./js2xml'); module.exports = (text, options) => js2xml(JSON.parse(text), options);