We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The parseW3CDTF() method gives a bad result with the following string : "2011-04-11T22:03:44.578125Z".
As mentionned by the W3C (http://www.w3.org/TR/NOTE-datetime), the number after the "." is a decimal fraction of a second and not milliseconds.
The parseW3CDTF() method interprets this number as milliseconds and : 578125 ms = 578 s + 125 ms = 9 min + 578 s + 125 ms
It should be interpreted like this : 0.578125 s = 578 ms + 0.000125 s
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The parseW3CDTF() method gives a bad result with the following string : "2011-04-11T22:03:44.578125Z".
As mentionned by the W3C (http://www.w3.org/TR/NOTE-datetime), the number after the "." is a decimal fraction of a second and not milliseconds.
The parseW3CDTF() method interprets this number as milliseconds and :
578125 ms
= 578 s + 125 ms
= 9 min + 578 s + 125 ms
It should be interpreted like this :
0.578125 s
= 578 ms + 0.000125 s
The text was updated successfully, but these errors were encountered: