about summary refs log tree commit diff
path: root/src/lib/browser.ts
blob: 08c43fbfdfb08429c20dff9585bfbfeb739a312d (plain) (blame)
1
2
3
4
5
6
7
8
9
// 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
export const isAndroidWeb =
  /android/i.test(navigator.userAgent) && isTouchDevice