(date: Date)
| 13 | } |
| 14 | |
| 15 | function formatTimestamp(date: Date): string { |
| 16 | const pad = (value: number) => String(value).padStart(2, "0"); |
| 17 | return [ |
| 18 | String(date.getFullYear()), |
| 19 | pad(date.getMonth() + 1), |
| 20 | pad(date.getDate()), |
| 21 | "-", |
| 22 | pad(date.getHours()), |
| 23 | pad(date.getMinutes()), |
| 24 | pad(date.getSeconds()), |
| 25 | ].join(""); |
| 26 | } |
| 27 | |
| 28 | export interface BundledIssueReport { |
| 29 | path: string; |
no test coverage detected