(path: string)
| 117 | } |
| 118 | |
| 119 | protected async getMtime(path: string): Promise<number | null> { |
| 120 | return stat(path).then( |
| 121 | (s) => s.mtimeMs, |
| 122 | () => null, |
| 123 | ); |
| 124 | } |
| 125 | |
| 126 | protected async recordMtime(path: string): Promise<void> { |
| 127 | const mtime = await this.getMtime(path); |
no outgoing calls
no test coverage detected