[READ-ONLY] a fast, modern browser for the npm registry
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 3faaf04c4a8e86b48c150f83268fa4dbfbe2e3dd 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}