(content: string)
| 9 | import { capBodyToGithubLimit, extractRecentErrors } from "./issue-body"; |
| 10 | |
| 11 | export function sanitizeLogContent(content: string): string { |
| 12 | return sanitizeString(content); |
| 13 | } |
| 14 | |
| 15 | function formatTimestamp(date: Date): string { |
| 16 | const pad = (value: number) => String(value).padStart(2, "0"); |
no test coverage detected