(filePath)
| 386 | return rows.length; |
| 387 | } |
| 388 | |
| 389 | function safeMtime(filePath) { |
| 390 | try { |
| 391 | return fs.statSync(filePath).mtime.toISOString(); |
| 392 | } catch { |
| 393 | return null; |
| 394 | } |
| 395 | } |
| 396 | |
| 397 | function relativeProjectPath(projectRoot, filePath) { |
no outgoing calls
no test coverage detected