Skip to content Skip to sidebar Skip to footer

Has Chrome Stopped Supporting Intl Function?

I am using chrome browser (Version 92.0.4515.131). I found that the support for JavaScript Intl is not functioning properly in Chrome browser. Chrome is giving '08/02/2021' as a r

Solution 1:

See Intl.ListFormat.supportedLocalesOf()

When I run Intl.ListFormat.supportedLocalesOf(['en', 'de', 'nb']) in Chrome and Firefox:

  • Chrome reports that it supports English and German
  • Firefox reports that it supports English, German and Norwegian

The problem isn't lack of support for Intl (which would throw an error if it wasn't supported) but the nb-NO locale specifically.

Solution 2:

This seems to be an issue with chromium: https://bugs.chromium.org/p/chromium/issues/detail?id=1233509&q=locale&can=2

Hopefully it will be solved soon.

Post a Comment for "Has Chrome Stopped Supporting Intl Function?"