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