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
Throughout the codes, timezone offsets are calculated base on new Date(0), which might be different than timezone offset for new Date().
This cause 30 minutes difference in MYT for example, which have +730 in 1970, and +800 in 2018.
https://en.wikipedia.org/wiki/Time_in_Malaysia
It should be standardized to use timezone calculated from new Date().
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Throughout the codes, timezone offsets are calculated base on new Date(0), which might be different than timezone offset for new Date().
This cause 30 minutes difference in MYT for example, which have +730 in 1970, and +800 in 2018.
https://en.wikipedia.org/wiki/Time_in_Malaysia
It should be standardized to use timezone calculated from new Date().
The text was updated successfully, but these errors were encountered: