UNPKG

is-touch-device

Version:

Is the current JS environment a touch device?

12 lines (11 loc) 377 B
export default function isTouchDevice() { return ( !!(typeof window !== 'undefined' && ('ontouchstart' in window || (window.DocumentTouch && typeof document !== 'undefined' && document instanceof window.DocumentTouch))) || !!(typeof navigator !== 'undefined' && (navigator.maxTouchPoints || navigator.msMaxTouchPoints)) ); }