Skip to content

Commit

Permalink
Removed a console.log statement.
Browse files Browse the repository at this point in the history
  • Loading branch information
kalvish21 committed Aug 18, 2018
1 parent 72dd4ba commit 584faaa
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,6 @@ module.exports.Argon2PasswordHasher = function() {

this.verify = function(password, hash_password) {
hash_password = hash_password.substring(this.algorithm.length, hash_password.length);
console.log(hash_password);
return argon2.verify(hash_password, password)
.then(function(correct) {
return correct;
Expand Down

0 comments on commit 584faaa

Please sign in to comment.