2022-11-18 21:38:41 +01:00

5 lines
176 B
JavaScript

/** Whether or not touch gestures are supported by the browser. */
export var touch = 'ontouchstart' in window ||
(navigator.msMaxTouchPoints ? true : false) ||
false;