Skip to content

Commit f41559a

Browse files
committed
Update index.js
Removed console.log() leftover
1 parent 9427f35 commit f41559a

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

index.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ module.exports.sign = function(payload, secretOrPrivateKey, options) {
3434
module.exports.verify = function(jwtString, secretOrPublicKey, options, callback) {
3535
if ((typeof options === 'function') && !callback) callback = options, options = null;
3636
if (!options) options = {};
37-
38-
console.log("options: %s", options);
3937

4038
if (!jwtString)
4139
return callback(new JsonWebTokenError('jwt must be provided'));

0 commit comments

Comments
 (0)