MCPcopy Index your code
hub / github.com/devploit/debugHunter / isSoft404

Function isSoft404

background.js:549–552  ·  view source on GitHub ↗
(text)

Source from the content-addressed store, hash-verified

547}
548
549function isSoft404(text) {
550 const lower = text.toLowerCase();
551 return soft404Indicators.some(i => lower.includes(i.toLowerCase()));
552}
553
554function truncateForStorage(text, max = 5000) {
555 return text.length <= max ? text : text.substring(0, max) + '\n... [truncated]';

Callers 2

getDomainBaselineFunction · 0.85
checkPathsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected