Sign in
webkit
/
WebKit
/
4998104f692eb1d9136695fb6ec92704feed5358
/
.
/
JSTests
/
stress
/
json-stringify-no-arguments.js
blob: 905ac253905510c2d92ca305c20fd17101fdbdb2 [
file
] [
log
] [
blame
]
function
shouldBe
(
actual
,
expected
)
{
if
(
actual
!==
expected
)
throw
new
Error
(
'bad value: '
+
actual
);
}
shouldBe
(
JSON
.
stringify
(),
undefined
);
shouldBe
(
JSON
.
stringify
(
undefined
),
undefined
);