2023-06-08 20:34:29 +08:00

10 lines
336 B
JavaScript
Vendored

export function toInt(x) {
return parseInt(x, 10) || 0;
}
export const supportsTouch = typeof window !== 'undefined' &&
('ontouchstart' in window ||
('maxTouchPoints' in window.navigator &&
window.navigator.maxTouchPoints > 0) ||
(window.DocumentTouch && document instanceof window.DocumentTouch));