()
| 238 | }; |
| 239 | |
| 240 | export const isMobile = (): boolean => |
| 241 | globalThis?.localStorage.mobile || globalThis?.navigator.maxTouchPoints > 1; |
| 242 | |
| 243 | export const shouldUseNativeShare = (): boolean => |
| 244 | 'share' in globalThis?.navigator && isMobile(); |
no outgoing calls
no test coverage detected