(root: string, abs: string)
| 1700 | } |
| 1701 | |
| 1702 | function noteMetaCacheKey(root: string, abs: string): string { |
| 1703 | return `${path.resolve(root)}\0${path.resolve(abs)}` |
| 1704 | } |
| 1705 | |
| 1706 | function sameMtimeMs(left: number, right: number): boolean { |
| 1707 | return Math.abs(left - right) < 0.001 |
no outgoing calls
no test coverage detected