Files
sow-nodebb-theme/.agents/skills/impeccable/scripts/detector/shared/page.mjs
T
archvillainette 1b99c93193 impeccable project-wide (#27)
Reviewed-on: #27
Co-authored-by: vickydotbat <vickydotbat@tutamail.com>
Co-committed-by: vickydotbat <vickydotbat@tutamail.com>
2026-07-16 22:12:56 +00: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 };