(zipPath, destDir)
| 266 | } |
| 267 | |
| 268 | async function unzipFile(zipPath, destDir) { |
| 269 | const dir = await unzipper.Open.file(zipPath); |
| 270 | await dir.extract({ path: destDir }); |
| 271 | } |
| 272 | |
| 273 | function deleteFile(filePath) { |
| 274 | return fs.promises.unlink(filePath); |
no outgoing calls
no test coverage detected