@widitrade/universal-dom-parser
v1.0.0
Published
### Usage
Downloads
2
Readme
universal-dom-parser
Usage
Make sure that whatever build system you are using (Webpack etc) is honoring the browser field in package.json. Then import the library and use it the same way you would use the browser native DOMParser.
let DOMParser = require('universal-dom-parser');
let parser = new DOMParser();
let doc = parser.parseFromString(`<html><body>Precious website</body></html>`, 'text/html');