Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
export default function domFromString(string) {
const template = document.createElement("template");
string = string.trim();
template.innerHTML = string;
return template.content.children;
}