Skip to content

Commit

Permalink
Bruhh
Browse files Browse the repository at this point in the history
  • Loading branch information
DemuraAIdev committed Dec 1, 2022
1 parent c45ac38 commit 0e892cb
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,16 +76,12 @@ if (process.argv[2] == '-e') {
}

} else {
setTimeout(() => {
fs.readFile("lib/asci.txt", 'utf8', function (err, data) {
if (err) throw err;
console.log(data);
console.log("[1] Encrypt File");
console.log("[2] Decrypt File");
});

}, 3000);

fs.readFile("lib/asci.txt", 'utf8', function (err, data) {
if (err) throw err;
console.log(data);
console.log("[1] Encrypt File");
console.log("[2] Decrypt File");
});

rl.question('Select an option: ', (answer) => {
if (answer == 1) {
Expand Down

0 comments on commit 0e892cb

Please sign in to comment.