All files / toolbox / timezone.ts

100.00% Branches 0/0
100.00% Lines 2/2
1
2
3
4
5
 
x4
 
 
x1


/** Supported timezones in the current runtime. */
export const timezones = [...Intl.supportedValuesOf("timeZone"), "UTC"] as string[]

/** Current timezone in the runtime. */
export const timezone = Intl.DateTimeFormat().resolvedOptions().timeZone as string