📅  最后修改于: 2022-03-11 15:04:21.848000             🧑  作者: Mango
const dom = new JSDOM(`hello`);
dom.serialize() === "hello";
// Contrast with:
dom.window.document.documentElement.outerHTML === "hello";