Skip to content

Instantly share code, notes, and snippets.

@d9k
Created March 5, 2022 01:38
Show Gist options
  • Save d9k/47055ddc0689458b4d950379acdfcd07 to your computer and use it in GitHub Desktop.
Save d9k/47055ddc0689458b4d950379acdfcd07 to your computer and use it in GitHub Desktop.
helpers
export function json(o: any): string {
return JSON.stringify(o, null, 2);
}
export function ljson(o: any): void {
console.log(json(o));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment