simple JavaScript to pretty print JSON:
more info on JSON.stringify:
https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify
//JSON pretty print!:
var pretty = JSON.stringify(JSON.parse(json), null, numIndents);
more info on JSON.stringify:
https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify
Comments
Post a Comment