Skip to content

Instantly share code, notes, and snippets.

@kanakiyajay
Created August 27, 2014 06:37
Show Gist options
  • Save kanakiyajay/4fb35ad937b35c5c623d to your computer and use it in GitHub Desktop.
Save kanakiyajay/4fb35ad937b35c5c623d to your computer and use it in GitHub Desktop.
Angular | output prettified JSON output with whitespaces and newlines
function toJson(obj) {
return JSON.stringify(obj, function(k,v) { return v; }, ' ')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment