Yaltopia-Tickets-App/.agents/skills/yimpeccable/scripts/detector/shared/page.mjs
2026-06-05 13:39:37 +03:00

8 lines
252 B
JavaScript

/** Check if content looks like a full page (not a component/partial) */
function isFullPage(content) {
const stripped = content.replace(/<!--[\s\S]*?-->/g, '');
return /<!doctype\s|<html[\s>]|<head[\s>]/i.test(stripped);
}
export { isFullPage };