UNPKG

244 BJavaScriptView Raw
1module.exports = function isTouchDevice () {
2 // works on most browsers
3 if ('ontouchstart' in window) {
4 return true
5 }
6
7 // works on IE10/11 and Surface
8 // eslint-disable-next-line compat/compat
9 return !!navigator.maxTouchPoints
10}