Files
for-legacy-web/src/lib/isTouchscreenDevice.ts
2021-07-10 15:57:29 +01:00

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;