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