mirror of
https://github.com/stoatchat/for-legacy-web.git
synced 2026-04-28 08:10:36 +00:00
9 lines
269 B
TypeScript
9 lines
269 B
TypeScript
import { isDesktop, isMobile, isTablet } from "react-device-detect";
|
|
|
|
export const isTouchscreenDevice =
|
|
isDesktop || isTablet
|
|
? false
|
|
: (typeof window !== "undefined"
|
|
? navigator.maxTouchPoints > 0
|
|
: false) || isMobile;
|