mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-12 11:19:56 +00:00
10 lines
336 B
JavaScript
Vendored
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));
|