Sign in
webkit
/
WebKit
/
c6951ff6f7d972427c05df8e7c39e3f2d74bf29c
/
.
/
JSTests
/
es6
/
Proxy_JSON.stringify_support.js
blob: c908ee1d40604a11220fd81af1b25740f53489f5 [
file
] [
log
] [
blame
]
function
test
()
{
return
JSON
.
stringify
(
new
Proxy
([
'foo'
],
{}))
===
'["foo"]'
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);