Skip to content

Commit 61ff117

Browse files
committed
minor
1 parent 9039cf0 commit 61ff117

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

index.js

+10-7
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
var jws = require('jws');
22

3-
var JsonWebTokenError = module.exports.JsonWebTokenError = require('./lib/JsonWebTokenError');
4-
var TokenExpiredError = module.exports.TokenExpiredError = require('./lib/TokenExpiredError');
3+
var JWT = module.exports;
54

6-
module.exports.decode = function (jwt, options) {
5+
var JsonWebTokenError = JWT.JsonWebTokenError = require('./lib/JsonWebTokenError');
6+
var TokenExpiredError = JWT.TokenExpiredError = require('./lib/TokenExpiredError');
7+
8+
9+
JWT.decode = function (jwt, options) {
710
options = options || {};
811
var decoded = jws.decode(jwt, options);
912
if (!decoded) { return null; }
@@ -18,7 +21,7 @@ module.exports.decode = function (jwt, options) {
1821
}
1922
} catch (e) { }
2023
}
21-
24+
2225
//return header if `complete` option is enabled. header includes claims
2326
//such as `kid` and `alg` used to select the key within a JWKS needed to
2427
//verify the signature
@@ -32,7 +35,7 @@ module.exports.decode = function (jwt, options) {
3235
return payload;
3336
};
3437

35-
module.exports.sign = function(payload, secretOrPrivateKey, options) {
38+
JWT.sign = function(payload, secretOrPrivateKey, options) {
3639
options = options || {};
3740

3841
var header = ((typeof options.headers === 'object') && options.headers) || {};
@@ -81,7 +84,7 @@ module.exports.sign = function(payload, secretOrPrivateKey, options) {
8184
return signed;
8285
};
8386

84-
module.exports.verify = function(jwtString, secretOrPublicKey, options, callback) {
87+
JWT.verify = function(jwtString, secretOrPublicKey, options, callback) {
8588
if ((typeof options === 'function') && !callback) {
8689
callback = options;
8790
options = {};
@@ -160,7 +163,7 @@ module.exports.verify = function(jwtString, secretOrPublicKey, options, callback
160163
var payload;
161164

162165
try {
163-
payload = module.exports.decode(jwtString);
166+
payload = JWT.decode(jwtString);
164167
} catch(err) {
165168
return done(err);
166169
}

0 commit comments

Comments
 (0)