(path: string)
| 476 | // ─── small helper that swallows stat errors ─────────────────────────────── |
| 477 | |
| 478 | async function statSafely(path: string): Promise<{ mtimeMs: number; size: number } | undefined> { |
| 479 | try { |
| 480 | return await stat(path); |
| 481 | } catch { |
| 482 | return undefined; |
| 483 | } |
| 484 | } |
no test coverage detected