UNPKG

xml-lite

Version:

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

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