Update list of Intl service constructors

Add RelativeTimeFormat, ListFormat, and DisplayNames to the list of Intl
service constructors.
This commit is contained in:
André Bargull 2020-03-30 04:55:13 -07:00 committed by Rick Waldron
parent 62b8fce389
commit 7556d59fe7
1 changed files with 2 additions and 1 deletions

View File

@ -39,7 +39,8 @@ function testWithIntlConstructors(f) {
var constructors = ["Collator", "NumberFormat", "DateTimeFormat"];
// Optionally supported Intl constructors.
["PluralRules"].forEach(function(constructor) {
// NB: Intl.Locale isn't an Intl service constructor!
["PluralRules", "RelativeTimeFormat", "ListFormat", "DisplayNames"].forEach(function(constructor) {
if (typeof Intl[constructor] === "function") {
constructors[constructors.length] = constructor;
}