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);