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 en-gb locale file's dateFormat entry (yy/mm/dd) differs from the standard JavaScript toLocaleDateString("en-GB") method among other sources.
toLocaleDateString("en-GB")
new Date().toLocaleDateString("en-GB") // dd/mm/yy new Intl.DateTimeFormat("en-GB").format(new Date()) // dd/mm/yy
Other sources: Wikipedia - Date and Time Notation in the United Kingdom Oracle Documentation - Date and Time Formats in the United Kingdom DateTime::Locale - DateTime::Locale::en_GB
Original PR: #65
The text was updated successfully, but these errors were encountered:
ccbd1e0
No branches or pull requests
The en-gb locale file's dateFormat entry (yy/mm/dd) differs from the standard JavaScript
toLocaleDateString("en-GB")
method among other sources.Other sources:
Wikipedia - Date and Time Notation in the United Kingdom
Oracle Documentation - Date and Time Formats in the United Kingdom
DateTime::Locale - DateTime::Locale::en_GB
Original PR: #65
The text was updated successfully, but these errors were encountered: