dayjs.ts 223 B

1234567891011
  1. import dayjs from 'dayjs'
  2. export function guessLocalTimezone(): string {
  3. const guess = dayjs.tz.guess()
  4. try {
  5. Intl.DateTimeFormat(undefined, { timeZone: guess })
  6. return guess
  7. } catch {
  8. return 'UTC'
  9. }
  10. }