()
| 241 | globalThis?.localStorage.mobile || globalThis?.navigator.maxTouchPoints > 1; |
| 242 | |
| 243 | export const shouldUseNativeShare = (): boolean => |
| 244 | 'share' in globalThis?.navigator && isMobile(); |
| 245 | |
| 246 | export const shouldUseSocialAuthPopup = (): boolean => { |
| 247 | if (isIOSNative()) { |
no test coverage detected