Sign in
webkit
/
WebKit
/
1f5bafe5ae87a22fbc029b76fb26b628be327746
/
.
/
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"
);