about summary refs log tree commit diff
path: root/src/lib/browser.ts
blob: d178a9a64ecb1fcae06ebffe1070e9d1c918da15 (plain) (blame)
1
2
3
4
5
6
7
// https://stackoverflow.com/questions/7944460/detect-safari-browser
export const isSafari = /^((?!chrome|android).)*safari/i.test(
  navigator.userAgent,
)
export const isFirefox = /firefox|fxios/i.test(navigator.userAgent)
export const isTouchDevice =
  'ontouchstart' in window || navigator.maxTouchPoints > 1