(data: unknown)
| 6 | |
| 7 | /** Serialize data as compact (no indentation) JSON. */ |
| 8 | export function compactJson(data: unknown): string { |
| 9 | return JSON.stringify(data) |
| 10 | } |
| 11 | |
| 12 | /** |
| 13 | * Truncate a string to a character limit, appending a guidance message |
no outgoing calls
no test coverage detected