Skip to content

Instantly share code, notes, and snippets.

@getify
Created March 7, 2014 01:51
Show Gist options
  • Save getify/9403543 to your computer and use it in GitHub Desktop.
Save getify/9403543 to your computer and use it in GitHub Desktop.
JSON.pretty
if (!JSON.pretty) {
JSON.pretty = function jsonpretty(o,f,indent) {
f = (f !== undefined) ? f : null;
indent = (indent !== undefined) ? indent : "\t";
return JSON.stringify(o,f,indent);
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment