LANCommander/LANCommander.UI/Scripts/TimeProvider.ts
2025-03-17 02:02:17 -05:00

9 lines
No EOL
182 B
TypeScript

export class TimeProvider
{
GetLocalTimeZone(): string
{
const options = Intl.DateTimeFormat().resolvedOptions();
return options.timeZone;
}
}