You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the JSON converter and tester functionalty requires keys to be quoted, where javascript does not. This make it difficult to test JS data with quoting keys, which isn't required in the browser.
Examples.
JS is okay with
{ content : "foo bar" }
Test at json.fastfrag.org complains unless it's quoted,
{ "content" : "foo bar" }
This is too strict.
The text was updated successfully, but these errors were encountered:
Currently, the JSON converter and tester functionalty requires keys to be quoted, where javascript does not. This make it difficult to test JS data with quoting keys, which isn't required in the browser.
Examples.
JS is okay with
{ content : "foo bar" }
Test at json.fastfrag.org complains unless it's quoted,
{ "content" : "foo bar" }
This is too strict.
The text was updated successfully, but these errors were encountered: