Last active
February 24, 2017 13:24
-
-
Save bendc/74f931d4a8bf4e25a8b7 to your computer and use it in GitHub Desktop.
Create DOM node from innerHTML-like string
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
const createNode = html => | |
new Range().createContextualFragment(html).firstElementChild; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Example: