export function json(o: any): string { return JSON.stringify(o, null, 2); } export function ljson(o: any): void { console.log(json(o)); }