Last active
August 24, 2019 10:36
-
-
Save thanapongp/e925446d7d2ccbcb4e8e44d4cdc63be1 to your computer and use it in GitHub Desktop.
Initial utils.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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