@web3auth/ws-embed
Version:
Embed script
11 lines (8 loc) • 317 B
JavaScript
;
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;
};
exports.htmlToElement = htmlToElement;