blob: dcacecd4239c2832f9153a28e22b35a37996e542 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/**
* Uses the DOM to parse HTML.
*/
const html = function(str) {
const tmp = document.implementation.createHTMLDocument();
tmp.body.innerHTML = str;
return tmp.body.children;
};
export default html;
|