From 7a7f4e71c8994155440b3a66fc0960f4fa94404b Mon Sep 17 00:00:00 2001 From: Sam Levan Date: Thu, 19 Mar 2015 09:48:54 -0700 Subject: [PATCH] remove console log in isFree function --- index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/index.js b/index.js index 01f220a..23cb6c8 100644 --- a/index.js +++ b/index.js @@ -8,7 +8,6 @@ function isFree(email) { if (typeof email !== 'string') throw new TypeError('email must be a string'); console.log(email); var domain = tldjs.getDomain(email.split('@').pop()); - console.log(domain, free.indexOf(domain)); return free.indexOf(domain) !== -1; }