(date: Date = new Date())
| 58 | } |
| 59 | |
| 60 | function formatDatePrefix(date: Date = new Date()): string { |
| 61 | const month = String(date.getMonth() + 1).padStart(2, '0'); |
| 62 | const day = String(date.getDate()).padStart(2, '0'); |
| 63 | return `${month}${day}`; |
| 64 | } |
| 65 | |
| 66 | function normalizeNameHint(nameHint?: string): string | null { |
| 67 | if (!nameHint) { |
no outgoing calls
no test coverage detected