9 lines
No EOL
196 B
TypeScript
9 lines
No EOL
196 B
TypeScript
export class TimeProvider
|
|
{
|
|
public static GetLocalTimeZone(): string
|
|
{
|
|
const options = Intl.DateTimeFormat().resolvedOptions();
|
|
|
|
return options.timeZone;
|
|
}
|
|
} |