Sign in
webkit
/
WebKit
/
6117b7969ae9bfefe57ab827c89504ffb0a59249
/
.
/
JSTests
/
stress
/
unescape.js
blob: f8c1524348b97611f4558930fdbb0f891e51a0f3 [
file
] [
log
] [
blame
]
function
shouldBe
(
actual
,
expected
)
{
if
(
actual
!==
expected
)
throw
new
Error
(
'bad value: '
+
actual
);
}
shouldBe
(
unescape
(
"%0"
),
"%0"
);
shouldBe
(
unescape
(
"%a"
),
"%a"
);