()
| 26 | export const supportsNativeWindowDragging = supportsNativeWindowControls; |
| 27 | |
| 28 | export const isMacOSDesktopRuntime = (): boolean => |
| 29 | supportsNativeWindowControls() && |
| 30 | typeof navigator !== 'undefined' && |
| 31 | typeof navigator.platform === 'string' && |
| 32 | navigator.platform.toUpperCase().includes('MAC'); |
no test coverage detected