[READ-ONLY] a fast, modern browser for the npm registry
at main 6 lines 151 B view raw
1export function isTouchDevice() { 2 if (import.meta.server) { 3 return false 4 } 5 return 'ontouchstart' in window || navigator.maxTouchPoints > 0 6}