JSON Beautify
Valid JSON requires that the keys be quoted e.g {"a": 10}. The problem is that if you have a large JSON text that you want the user to view and edit. The quotes makes the text verbose and hard to read. You can use JSON_mod2 to beatuify your JSON with the following call.
var indent = 2;
var dropQuotesOnKeys = true;
JSON2_mod.stringify(jsonObj, null, indent, dropQuotesOnKeys);
var indent = 2;
var dropQuotesOnKeys = true;
JSON2_mod.stringify(jsonObj, null, indent, dropQuotesOnKeys);
Comments