UNPKG

172 BJavaScriptView Raw
1'use strict';
2/**
3 * json2xml module
4 * @module json2xml
5 * @see module:index
6 */
7const js2dom = require('./js2dom');
8
9module.exports = (text) => js2dom(JSON.parse(text));