UNPKG

@web3auth/ws-embed

Version:

Embed script

9 lines (7 loc) 289 B
const htmlToElement = html => { const template = window.document.createElement("template"); const trimmedHtml = html.trim(); // Never return a text node of whitespace as the result template.innerHTML = trimmedHtml; return template.content.firstChild; }; export { htmlToElement };