Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
167 Bytes
export const isTouchDevice = () => {
return (
'ontouchstart' in window ||
navigator.MaxTouchPoints > 0 ||
navigator.msMaxTouchPoints > 0
);
};