()
| 128 | } |
| 129 | |
| 130 | function isDesktopSimulatorLayout() { |
| 131 | return Boolean( |
| 132 | window.matchMedia?.("(min-width: 960px)").matches && navigator.maxTouchPoints === 0 |
| 133 | ); |
| 134 | } |
| 135 | |
| 136 | function safeLatLngToCell(lat: number, lng: number, resolution: number) { |
| 137 | try { |
no outgoing calls
no test coverage detected