From 718ab036cd498701ec84bb15fd2bf10b6adf2580 Mon Sep 17 00:00:00 2001 From: mrrfv Date: Mon, 15 May 2023 15:06:35 +0200 Subject: [PATCH] List the amount of items found in the whitelist --- cf_list_create.js | 1 + 1 file changed, 1 insertion(+) diff --git a/cf_list_create.js b/cf_list_create.js index 422f03a..07237e0 100644 --- a/cf_list_create.js +++ b/cf_list_create.js @@ -40,6 +40,7 @@ fs.readFile('whitelist.csv', 'utf8', async (err, data) => { } }); +console.log(`Found ${whitelist.length} valid domains in whitelist.`); // Read input.csv and parse domains fs.readFile('input.csv', 'utf8', async (err, data) => {