UNPKG

react-nice-scroll

Version:

A React library to smooth scroll and scroll-based animations.

14 lines (12 loc) 356 B
// @ts-nocheck const detectTouch = () => { if (typeof window !== 'undefined') { return Boolean( 'ontouchstart' in window || window.navigator.maxTouchPoints > 0 || window.navigator.msMaxTouchPoints > 0 || (window.DocumentTouch && document instanceof DocumentTouch) ); } }; export default detectTouch;