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