UNPKG
react-dates-rtl
Version:
latest (10.1.3)
10.1.3
10.1.2
10.1.1
Based on react-dates by airbnb [with RTL support]
github.com/sag1v/react-dates
sag1v/react-dates
react-dates-rtl
/
src
/
utils
/
isTouchDevice.js
5 lines
(4 loc)
•
188 B
JavaScript
View Raw
1
2
3
4
5
export
default
function
isTouchDevice
(
) {
return
!!(
typeof
window
!==
'undefined'
&&
'ontouchstart'
in
window
) || !!(
typeof
navigator !==
'undefined'
&& navigator.
maxTouchPoints
); }