From 10a0476663c3557ec33298e546ee64cff9f9fffe Mon Sep 17 00:00:00 2001 From: Chuck Dries Date: Mon, 9 Aug 2021 17:44:19 -0700 Subject: [PATCH] Add clone instructions to readme --- README.md | 2 ++ index.js | 3 +++ 2 files changed, 5 insertions(+) diff --git a/README.md b/README.md index 03abce8..3fda850 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ Requires Node 12+ ```sh +git clone https://git.chuckdries.com/chuckdries/lead-deduplication +cd lead-deduplication npm i # install dependencies node index.js # run script ``` \ No newline at end of file diff --git a/index.js b/index.js index 6ef71a7..052a6ef 100755 --- a/index.js +++ b/index.js @@ -119,3 +119,6 @@ console.log("records processed:", leads.length); console.log("collisions:", collisions.length); console.log("output leads:", Object.keys(leadsById).length); console.log("leads written to deduplicatedLeads.json"); + +// // uncomment for more information about deduplication +// console.log("collisions", collisions);