You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there any way to get timezone names and abbreviations from the globalize library? As per the comment - [https://github.com//issues/673#issuecomment-309430240] globalize support this.
Current values returned by executing the above statements are as follows.
Globalize.dateFormatter({ datetime: "full", timeZone: "Europe/Berlin" })( new Date() )
'Wednesday, October 5, 2022 at 4:16:54 PM GMT+02:00'
// Expected to return "Monday, November 1, 2010 at 8:55:00 PM Central European Standard Time"
Globalize.dateFormatter({ raw: 'z', timeZone: "Europe/Berlin" })( new Date() )
'GMT+2'
//Expected to return "EST"
Is this a bug and any plans to fix these?
The text was updated successfully, but these errors were encountered:
Hi,
Is there any way to get timezone names and abbreviations from the globalize library? As per the comment - [https://github.com//issues/673#issuecomment-309430240] globalize support this.
Current values returned by executing the above statements are as follows.
Globalize.dateFormatter({ datetime: "full", timeZone: "Europe/Berlin" })( new Date() )
Globalize.dateFormatter({ raw: 'z', timeZone: "Europe/Berlin" })( new Date() )
Is this a bug and any plans to fix these?
The text was updated successfully, but these errors were encountered: