removed some comments and empty lines nothing to write home about

This commit is contained in:
Expand-sys 2021-05-05 19:31:32 +10:00
parent 6c116acff5
commit 8eb3867825

View file

@ -7,10 +7,10 @@ dotenv.config();
let transporter = nodemailer.createTransport({
host: process.env.HOST,
port: 465,
secure: true, // true for 465, false for other ports
secure: true,
auth: {
user: process.env.SENDER, // generated ethereal user
pass: process.env.SPASS, // generated ethereal password
user: process.env.SENDER,
pass: process.env.SPASS,
},
})
let message = [];
@ -116,8 +116,7 @@ async function dns(){
length = acme.length;
for(i in string){
if (string[i].indexOf(acme)!=-1) {
// one of the substrings is in yourstring
records.push(string[i]) //result
records.push(string[i])
}
}
});