LANCommander/LANCommander.UI/Components/LocalTime/TimeProvider.ts

9 lines
No EOL
196 B
TypeScript

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