4467bb3c79
Bug: v8:8604 Change-Id: Ieab15e55ed392019cc94de80d8e9c1a33f4d599a Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1573038 Reviewed-by: Sathya Gunasekaran <gsathya@chromium.org> Commit-Queue: Frank Tang <ftang@chromium.org> Cr-Commit-Position: refs/heads/master@{#60928}
9 lines
301 B
JavaScript
9 lines
301 B
JavaScript
// Copyright 2019 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.
|
|
|
|
var number = 3500;
|
|
assertEquals(
|
|
"3.500,00\u00a0KM",
|
|
number.toLocaleString('hr-BA', { style: 'currency', currency: 'BAM'}));
|