Skip to content

Instantly share code, notes, and snippets.

@thanapongp
Last active August 24, 2019 10:36
Show Gist options
  • Select an option

  • Save thanapongp/e925446d7d2ccbcb4e8e44d4cdc63be1 to your computer and use it in GitHub Desktop.

Select an option

Save thanapongp/e925446d7d2ccbcb4e8e44d4cdc63be1 to your computer and use it in GitHub Desktop.
Initial utils.js
export function htmlToElement(html) {
const template = document.createElement('template');
template.innerHTML = html.trim();
return template.content.firstChild;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment