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

Function isSignupPasswordPageUrl

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

Source from the content-addressed store, hash-verified

46 }
47
48 function isSignupPasswordPageUrl(rawUrl) {
49 const parsed = parseUrlSafely(rawUrl);
50 if (!parsed) return false;
51 return isSignupPageHost(parsed.hostname)
52 && /\/create-account\/password(?:[/?#]|$)/i.test(parsed.pathname || '');
53 }
54
55 function isSignupEmailVerificationPageUrl(rawUrl) {
56 const parsed = parseUrlSafely(rawUrl);

Callers 1

Calls 2

parseUrlSafelyFunction · 0.70
isSignupPageHostFunction · 0.70

Tested by

no test coverage detected