Skip to content

Instantly share code, notes, and snippets.

@feliwir
Created August 4, 2021 08:54
Show Gist options
  • Save feliwir/e7da8086757d8c5a5352170e8ac1629c to your computer and use it in GitHub Desktop.
Save feliwir/e7da8086757d8c5a5352170e8ac1629c to your computer and use it in GitHub Desktop.
prettifyJson(obj)
{
var result = ""
for (const [key, value] of Object.entries(obj)) {
if(key == "blabla")
result += "SchönesBlabla: " + value;
else
result += key+ ": " + value
result += "\n";
}
return result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment