Skip to content

Instantly share code, notes, and snippets.

@MikelArnaiz
Created September 11, 2020 08:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MikelArnaiz/6fdcd986f359d3c820426068f9ebaa42 to your computer and use it in GitHub Desktop.
Save MikelArnaiz/6fdcd986f359d3c820426068f9ebaa42 to your computer and use it in GitHub Desktop.
// https://en.wikipedia.org/wiki/List_of_UTC_time_offsets
export enum TimeZoneOffset {
UTC_Minus_12_00 = '-12:00',
UTC_Minus_11_00 = '-11:00',
UTC_Minus_10_00 = '-10:00',
UTC_Minus_09_30 = '-09:30',
UTC_Minus_09_00 = '-09:00',
UTC_Minus_08_00 = '-08:00',
UTC_Minus_07_00 = '-07:00',
UTC_Minus_06_00 = '-06:00',
UTC_Minus_05_00 = '-05:00',
UTC_Minus_04_00 = '-04:00',
UTC_Minus_03_30 = '-03:30',
UTC_Minus_03_00 = '-03:00',
UTC_Minus_02_00 = '-02:00',
UTC_Minus_01_00 = '-01:00',
UTC = '±00:00',
UTC_Plus_01_00 = '+01:00',
UTC_Plus_02_00 = '+02:00',
UTC_Plus_03_00 = '+03:00',
UTC_Plus_03_30 = '+03:30',
UTC_Plus_04_00 = '+04:00',
UTC_Plus_04_30 = '+04:30',
UTC_Plus_05_00 = '+05:00',
UTC_Plus_05_30 = '+05:30',
UTC_Plus_05_45 = '+05:45',
UTC_Plus_06_00 = '+06:00',
UTC_Plus_06_30 = '+06:30',
UTC_Plus_07_00 = '+07:00',
UTC_Plus_08_00 = '+08:00',
UTC_Plus_08_45 = '+08:45',
UTC_Plus_09_00 = '+09:00',
UTC_Plus_09_30 = '+09:30',
UTC_Plus_10_00 = '+10:00',
UTC_Plus_10_30 = '+10:30',
UTC_Plus_11_00 = '+11:00',
UTC_Plus_12_00 = '+12:00',
UTC_Plus_12_45 = '+12:45',
UTC_Plus_13_00 = '+13:00',
UTC_Plus_14_00 = '+14:00',
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment