mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-29 12:26:43 -06:00
4 lines
116 B
TypeScript
4 lines
116 B
TypeScript
|
export function isDeviceTouch(): boolean {
|
||
|
return 'maxTouchPoints' in navigator && navigator.maxTouchPoints > 0;
|
||
|
}
|