Merge branch 'feat/inda-383-daily-stat' into 'main'
[ProtonMail-WebClient.git] / packages / docs-core / lib / Services / Metrics / getBrowserForMetrics.ts
blob6959798a1bdea98df1a322416905769ad142ba6f
1 import { isChrome, isFirefox, isSafari, isEdgeChromium } from '@proton/shared/lib/helpers/browser'
3 export const BROWSERS = ['chrome', 'firefox', 'safari', 'edge', 'native-ios', 'native-android', 'other'] as const
5 export function getBrowserForMetrics(): (typeof BROWSERS)[number] {
6   if (isChrome()) {
7     return 'chrome'
8   }
9   if (isFirefox()) {
10     return 'firefox'
11   }
12   if (isSafari()) {
13     return 'safari'
14   }
15   if (isEdgeChromium()) {
16     return 'edge'
17   }
18   return 'other'