Files
yaak/src-web/lib/formatters.ts
2023-03-12 18:04:11 -07:00

8 lines
155 B
TypeScript

export function tryFormatJson(text: string): string {
try {
return JSON.stringify(JSON.parse(text), null, 2);
} catch (_) {
return text;
}
}