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
An ISO date like 2000-13-48T00:00:00Z or 2000-01-01T29:73:82Z is invalid: the DateTime.fromString() method should throw an exception in this case.
Instead, it returns a date where the timestamp is adjusted according to the "overflow": 2001-01-17 00:00:00 for 2000-13-48T00:00:00Z, 2000-01-02 06:14:22 for 2000-01-01T29:73:82Z.
The text was updated successfully, but these errors were encountered:
An ISO date like
2000-13-48T00:00:00Z
or2000-01-01T29:73:82Z
is invalid: theDateTime.fromString()
method should throw an exception in this case.Instead, it returns a date where the timestamp is adjusted according to the "overflow":
2001-01-17 00:00:00
for2000-13-48T00:00:00Z
,2000-01-02 06:14:22
for2000-01-01T29:73:82Z
.The text was updated successfully, but these errors were encountered: