revite/src/lib/isTouchscreenDevice.ts
Paul 69193e9a46 Add logic to "log out of all others".
Consider tablet as desktop device.
2021-07-08 14:29:21 +01:00

8 lines
271 B
TypeScript

import { isDesktop, isMobile, isTablet } from "react-device-detect";
export const isTouchscreenDevice =
(isDesktop || isTablet)
? false
: (typeof window !== "undefined"
? navigator.maxTouchPoints > 0
: false) || isMobile;