isTouchDevice.js 144 B

1234567
  1. "use strict";
  2. function isTouchDevice() {
  3. return 'ontouchstart' in window || 'maxTouchPoints' in navigator;
  4. }
  5. module.exports = isTouchDevice;