mirror of
https://github.com/nodejs/node.git
synced 2025-05-17 00:04:20 +00:00

PR-URL: https://github.com/nodejs/node/pull/38273 Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Michael Dawson <midawson@redhat.com> Reviewed-By: Mary Marchini <oss@mmarchini.me>
24 lines
616 B
JavaScript
24 lines
616 B
JavaScript
// Copyright 2021 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
// Flags: --harmony_intl_best_fit_matcher
|
|
|
|
const intl_objects = [
|
|
Intl.Collator,
|
|
Intl.DateTimeFormat,
|
|
Intl.DisplayNames,
|
|
Intl.ListFormat,
|
|
Intl.NumberFormat,
|
|
Intl.PluralRules,
|
|
Intl.RelativeTimeFormat,
|
|
Intl.Segmenter,
|
|
];
|
|
|
|
// Just ensure the f.supportedLocalesOf won't cause crash.
|
|
intl_objects.forEach(f => {
|
|
let supported = f.supportedLocalesOf(["en"]);
|
|
assertEquals(1, supported.length);
|
|
assertEquals("en", supported[0]);
|
|
});
|