konnos
Dashboard
flndrn
Briven
apps
studio
lib
dayjs.ts
dayjs.ts
11 lines ·
main
1
import dayjs from 'dayjs'
2
3
export function guessLocalTimezone(): string {
4
const guess = dayjs.tz.guess()
5
try {
6
Intl.DateTimeFormat(undefined, { timeZone: guess })
7
return guess
8
} catch {
9
return 'UTC'
10
}
11
}