()
| 5 | * Returns true if we are in the browser. |
| 6 | */ |
| 7 | export function isBrowser(): boolean { |
| 8 | // eslint-disable-next-line no-restricted-globals |
| 9 | return typeof window !== 'undefined' && (!isNodeEnv() || isElectronNodeRenderer()); |
| 10 | } |
| 11 | |
| 12 | type ElectronProcess = { type?: string }; |
| 13 |
no test coverage detected