This commit is contained in:
Norbert
2023-05-14 22:21:50 +02:00
parent 3d456499a8
commit 0783c539b6
-1
View File
@@ -62,7 +62,6 @@ fs.readFile('input.csv', 'utf8', async (err, data) => {
}); });
// Remove domains from the domains array that are present in the whitelist array // Remove domains from the domains array that are present in the whitelist array
const whitelist = whitelist
domains = domains.filter(domain => { domains = domains.filter(domain => {
return !whitelist.includes(domain); return !whitelist.includes(domain);
}); });