summaryrefslogtreecommitdiff
path: root/src/client/scripts/is-device-touch.ts
blob: 9f439ae4fdc394b6dfa5f3f1b7f561b6ce159bed (plain)
1
2
3
export function isDeviceTouch(): boolean {
	return 'maxTouchPoints' in navigator && navigator.maxTouchPoints > 0;
}