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
With #4, we can now parse four time zone offset formats:
±hhmm
±hh:mm
±hh
Z
However, we can only format two of these (the first using %Z, and the last using a literal Z). It would be nice to format the other two as well, but I’m unsure how to represent these in the format syntax. Perhaps ±hh could be a new (lowercase) z directive, which behaves identically to Z when parsing (akin to e & d, H & I)?
The text was updated successfully, but these errors were encountered:
With #4, we can now parse four time zone offset formats:
However, we can only format two of these (the first using
%Z
, and the last using a literalZ
). It would be nice to format the other two as well, but I’m unsure how to represent these in the format syntax. Perhaps ±hh could be a new (lowercase)z
directive, which behaves identically toZ
when parsing (akin toe
&d
,H
&I
)?The text was updated successfully, but these errors were encountered: