MCPcopy Index your code
hub / github.com/QLHazyCoder/FlowPilot / isSignupEmailVerificationPageUrl

Function isSignupEmailVerificationPageUrl

background/navigation-utils.js:55–60  ·  view source on GitHub ↗
(rawUrl)

Source from the content-addressed store, hash-verified

53 }
54
55 function isSignupEmailVerificationPageUrl(rawUrl) {
56 const parsed = parseUrlSafely(rawUrl);
57 if (!parsed) return false;
58 return isSignupPageHost(parsed.hostname)
59 && /\/email-verification(?:[/?#]|$)/i.test(parsed.pathname || '');
60 }
61
62 function is163MailHost(hostname = '') {
63 return hostname === 'mail.163.com'

Callers 1

Calls 2

parseUrlSafelyFunction · 0.70
isSignupPageHostFunction · 0.70

Tested by

no test coverage detected