UNPKG

simple-xml-dom

Version:

A thin wrapper around DOMParser and XMLSerializer for node and the browser.

8 lines (6 loc) 153 B
module.exports = function (Parser) { var parser = new Parser return function (string) { return parser.parseFromString(string, 'text/xml') } }