(hostname = '')
| 3258 | } |
| 3259 | |
| 3260 | function isSignupEntryHost(hostname = '') { |
| 3261 | if (typeof navigationUtils !== 'undefined' && navigationUtils?.isSignupEntryHost) { |
| 3262 | return navigationUtils.isSignupEntryHost(hostname); |
| 3263 | } |
| 3264 | return ['chatgpt.com', 'chat.openai.com'].includes(hostname); |
| 3265 | } |
| 3266 | |
| 3267 | function isSignupPasswordPageUrl(rawUrl) { |
| 3268 | if (typeof navigationUtils !== 'undefined' && navigationUtils?.isSignupPasswordPageUrl) { |
no outgoing calls
no test coverage detected