()
| 40 | export const NOT_SUPPORTED_MESSAGE = "Not supported in this deployment mode"; |
| 41 | |
| 42 | function getIsBrowser() { |
| 43 | return ( |
| 44 | typeof window !== "undefined" && typeof window.document !== "undefined" |
| 45 | ); |
| 46 | } |
| 47 | |
| 48 | function getConsoleUrl(isBrowser: boolean) { |
| 49 | return isBrowser |
no outgoing calls
no test coverage detected