(f: string)
| 171 | |
| 172 | // Helpers for Date/Paths so that output is complete for production, but simplified for tests. |
| 173 | const tryMtimeSync = (f: string) => { try { return mtimeSync(f); } catch { return undefined; } }; |
| 174 | const maybeDate = includeDatesAndFullPaths |
| 175 | ? (d: Date) => ` (${d})` |
| 176 | : (_: Date) => ""; |
no test coverage detected