Sign in
webkit
/
WebKit
/
075931ac30dcae1739e575539dfc139918725298
/
.
/
JSTests
/
stress
/
array-tolocalestring-empty-separator.js
blob: 44769800d248fbd1a09744a7f9a349fd3b44f9c8 [
file
] [
log
] [
blame
]
function
shouldBe
(
actual
,
expected
)
{
if
(
actual
!==
expected
)
throw
new
Error
(
'bad value: '
+
actual
);
}
shouldBe
([].
toLocaleString
(),
``);
shouldBe
([
42
].
toLocaleString
(
'en'
,
{
numberingSystem
:
'hanidec'
}),
`四二`);