LANCommander/LANCommander.UI/Scripts/TimeProvider.ts

9 lines
182 B
TypeScript
Raw Permalink Normal View History

2025-03-17 02:02:17 -05:00
export class TimeProvider
{
GetLocalTimeZone(): string
{
const options = Intl.DateTimeFormat().resolvedOptions();
return options.timeZone;
}
}