Created
April 10, 2019 23:12
-
-
Save EdwardIrby/5c0503b06463a4e20593df5053273e60 to your computer and use it in GitHub Desktop.
alternative to createTemplate
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
/** | |
* @param {(ShadowRoot|HTMLElement)} shadowRoot | |
* @param {...string} strings | |
*/ | |
export const createFragment = (root, ...strings) => { | |
removeChildren(root); | |
const range = document.createRange(); | |
range.setStart(root, 0); | |
return range.createContextualFragment( | |
[...strings] | |
.filter(Boolean) | |
.join(''), | |
); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment