mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-31 14:00:43 +00:00
10 lines
244 B
JavaScript
10 lines
244 B
JavaScript
module.exports = function isTouchDevice () {
|
|
// works on most browsers
|
|
if ('ontouchstart' in window) {
|
|
return true
|
|
}
|
|
|
|
// works on IE10/11 and Surface
|
|
// eslint-disable-next-line compat/compat
|
|
return !!navigator.maxTouchPoints
|
|
}
|