Skip to content

Commit

Permalink
missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
cscade committed Sep 19, 2013
1 parent 513029d commit 112c81d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion easy-pbkdf2.js
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ EasyPbkdf2.prototype = {
return;
}
keyLength = base64toBinary( priorHash ).length;
easyPbkdf2 = new EasyPbkdf2({ "KEY_LENGTH": keyLength })
easyPbkdf2 = new EasyPbkdf2({ "KEY_LENGTH": keyLength });
easyPbkdf2.hash( value, salt, function( err, valueHash ) {
var valid;
if ( !err ) {
Expand Down

0 comments on commit 112c81d

Please sign in to comment.