Intl.DateTimeFormat doesn't respect the passed culture #24051
Labels
confirmed-bug
Issues with confirmed bugs.
i18n-api
Issues and PRs related to the i18n implementation.
date = new Date('6/15/2017 1:03 PM');
Intl.DateTimeFormat('fr-FR', {year:'numeric', month:'numeric', day:'numeric', hour:'numeric', minute:'numeric'}).format(date)
expected:
"2017-6-15 13:03"
actual: (I am in the US with en-US culture settings for language and locale)
"6/15/2017, 1:03 PM"
This worked fine in Node v8.10.0.
The text was updated successfully, but these errors were encountered: