mirror of
https://github.com/espruino/Espruino.git
synced 2025-12-08 19:06:15 +00:00
9 lines
267 B
JavaScript
9 lines
267 B
JavaScript
// https://github.com/espruino/Espruino/issues/2176
|
|
|
|
a = { "" : {}, " \x00hello" : "world" }
|
|
a["\x00abc"] = "foo"
|
|
a[" \x00abc"] = "bar"
|
|
|
|
json = JSON.stringify(a)
|
|
result = json == "{\"\":{},\" \\u0000hello\":\"world\",\"\\u0000abc\":\"foo\",\" \\u0000abc\":\"bar\"}";
|