Skip to content

Instantly share code, notes, and snippets.

@thanapongp
Created September 8, 2019 09:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thanapongp/a9a248d2ea23ff9050021f31092bdfd0 to your computer and use it in GitHub Desktop.
Save thanapongp/a9a248d2ea23ff9050021f31092bdfd0 to your computer and use it in GitHub Desktop.
util.js with updated htmlToElement
export function htmlToElement(html) {
const template = document.createElement('template');
template.innerHTML = html.trim();
return template.content.firstElementChild;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment