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
While testing different time zones, I found an issue with the "America/Cordoba" zone and the countries() method.
moment.tz.guess() returned "America/Cordoba", which is in Argentina. However:
moment.tz.guess()
moment.tz.zone("America/Cordoba").countries() === []
The text was updated successfully, but these errors were encountered:
Fixed issue #821 - no country detected for America/Cordoba
44cbda8
test.deepEqual(tz.zone('America/Argentina/Cordoba').countries(), ["AR"]); test.deepEqual(tz.zone('America/Cordoba').countries(), []);
This is because America/Cordoba is deprecated in favor of America/Argentina/Cordoba and some browsers (via Intl) return the deprecated timezone.
America/Cordoba
America/Argentina/Cordoba
Close in favor of #873
Sorry, something went wrong.
No branches or pull requests
While testing different time zones, I found an issue with the "America/Cordoba" zone and the countries() method.
moment.tz.guess()
returned "America/Cordoba", which is in Argentina. However:The text was updated successfully, but these errors were encountered: