(content: string)
| 20 | * twice. |
| 21 | */ |
| 22 | export function sanitizeLogContent(content: string): string { |
| 23 | return sanitizeDiagnosticText(content); |
| 24 | } |
| 25 | |
| 26 | function formatTimestamp(date: Date): string { |
| 27 | const pad = (value: number) => String(value).padStart(2, "0"); |
no test coverage detected