mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-11 04:13:08 +02:00
4 lines
116 B
TypeScript
4 lines
116 B
TypeScript
|
export function isDeviceTouch(): boolean {
|
||
|
return 'maxTouchPoints' in navigator && navigator.maxTouchPoints > 0;
|
||
|
}
|