(hostname = '')
| 3251 | } |
| 3252 | |
| 3253 | function isSignupPageHost(hostname = '') { |
| 3254 | if (typeof navigationUtils !== 'undefined' && navigationUtils?.isSignupPageHost) { |
| 3255 | return navigationUtils.isSignupPageHost(hostname); |
| 3256 | } |
| 3257 | return ['auth0.openai.com', 'auth.openai.com', 'accounts.openai.com'].includes(hostname); |
| 3258 | } |
| 3259 | |
| 3260 | function isSignupEntryHost(hostname = '') { |
| 3261 | if (typeof navigationUtils !== 'undefined' && navigationUtils?.isSignupEntryHost) { |
no outgoing calls
no test coverage detected