(path: string)
| 15 | const timestamps = new Map<string, number>() |
| 16 | |
| 17 | export function markInternalWrite(path: string): void { |
| 18 | timestamps.set(path, Date.now()) |
| 19 | } |
| 20 | |
| 21 | /** |
| 22 | * True if `path` was marked within `windowMs`. Consumes the mark on match — |
no test coverage detected