deepsite-v2 / lib /compare-html-diff.ts
ongudidan's picture
Initial DeepSite v2 upload
cececac
raw
history blame
307 Bytes
import { defaultHTML } from "./consts";
export const isTheSameHtml = (currentHtml: string): boolean => {
const normalize = (html: string): string =>
html
.replace(/<!--[\s\S]*?-->/g, "")
.replace(/\s+/g, " ")
.trim();
return normalize(defaultHTML) === normalize(currentHtml);
};