UNPKG

extra-dom

Version:
6 lines (5 loc) 144 B
export function parse(html: string): Node[] { const div = document.createElement('div') div.innerHTML = html return [...div.childNodes] }