Skip to content

Instantly share code, notes, and snippets.

@EdwardIrby
Created April 10, 2019 23:12
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 EdwardIrby/5c0503b06463a4e20593df5053273e60 to your computer and use it in GitHub Desktop.
Save EdwardIrby/5c0503b06463a4e20593df5053273e60 to your computer and use it in GitHub Desktop.
alternative to createTemplate
/**
* @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