()
| 103 | }); |
| 104 | |
| 105 | const getCacheFileTimes = async () => { |
| 106 | const cacheFiles = (await readdir(cachePath)).sort(); |
| 107 | return new Map( |
| 108 | cacheFiles.map((f) => [ |
| 109 | f, |
| 110 | fs.statSync(path.join(cachePath, f)).mtime.toString() |
| 111 | ]) |
| 112 | ); |
| 113 | }; |
| 114 | |
| 115 | const execute = () => { |
| 116 | /** @type {Record<string, { exports: unknown }>} */ |
no test coverage detected