-
Notifications
You must be signed in to change notification settings - Fork 106
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not able to parse javascript's ISO string format #161
Comments
Yes but if you do
is the result. It's not the timezone that's the issue but the T between the date and time. |
right, we (meaning I) built in only a limited support for ISO 8601 dates so the T and the Z confuse the code. It is something we could probably fix but it would require adding timezone aware code to everything so we haven't yet. this has always been a case where I suggest that people scan the code for TZ aware ISO 8601 dates before calling PDT |
no worries - only those of us who have been dealing with this stuff for years have it all memorized - hell, even I forget most of it now and depend on folks like the amazing @idpaterson to remind me |
Using JavaScript's
toISOString()
does not parse correctly. The method returns a string in simplified extended ISO 8601 format..Example of the code,
The text was updated successfully, but these errors were encountered: