7 lines
144 B
JavaScript
7 lines
144 B
JavaScript
|
|
"use strict";
|
||
|
|
|
||
|
|
function isTouchDevice() {
|
||
|
|
return 'ontouchstart' in window || 'maxTouchPoints' in navigator;
|
||
|
|
}
|
||
|
|
|
||
|
|
module.exports = isTouchDevice;
|