Remove unused method

This commit is contained in:
KingRainbow44 2022-04-25 18:50:50 -04:00
parent 5ad8d86e70
commit ed020e4eab
No known key found for this signature in database
GPG Key ID: FC2CB64B00D257BE

View File

@ -45,11 +45,6 @@ async function downloadAndInstall(application, file, installCallback = undefined
if(installCallback) await installCallback(`${tempDirectory}/${file}`);
}
async function extractTo(file, destination) {
const contents = fs.createReadStream(file);
contents.pipe(unzip.Extract({path: destination}));
}
function exit() {
console.log("Press any key to return to the main menu.");
process.stdin.setRawMode(true);