dayjs.ts11 lines · main
1import dayjs from 'dayjs'
2
3export 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}