10 lines
164 B
TypeScript
Raw Normal View History

2023-09-16 00:03:09 +08:00
import dayjs from 'dayjs';
/**
* Mock
* return local, or fetch remote data
*/
export function getUserTimezone(): string {
return dayjs.tz.guess() ?? 'utc';
}