fix: HTMLParser.createElement is not a function

This commit is contained in:
thecodrr
2021-12-09 00:36:16 +05:00
parent 2a9f57bacf
commit 7d4edab92b

View File

@@ -7,5 +7,5 @@ export const parseHTML =
export function getDummyDocument() { export function getDummyDocument() {
const doc = parseHTML("<div></div>"); const doc = parseHTML("<div></div>");
return typeof DOMParser === "undefined" ? doc : doc.body.firstElementChild; return typeof DOMParser === "undefined" ? doc : doc;
} }