UNPKG

178 BJavaScriptView Raw
1export default function parseHTML (htmlString) {
2 const document = new DOMParser().parseFromString(htmlString, 'text/html')
3 return document.querySelector('body').firstChild
4}