Skip to content

Commit 50873c7

Browse files
committed
feat: change .sign to standard async callback
- subscribe error event - change the first argument of the callback as error
1 parent c548032 commit 50873c7

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

index.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,11 @@ JWT.sign = function(payload, secretOrPrivateKey, options, callback) {
132132
header: header,
133133
privateKey: secretOrPrivateKey,
134134
payload: JSON.stringify(payload)
135-
}).on('done', callback);
135+
})
136+
.on('error', callback)
137+
.on('done', function(signature) {
138+
callback(null, signature);
139+
});
136140
} else {
137141
return jws.sign({header: header, payload: payload, secret: secretOrPrivateKey, encoding: encoding});
138142
}

test/async_sign.tests.js

+8-1
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,19 @@ describe('signing a token asynchronously', function() {
99
var syncToken = jwt.sign({ foo: 'bar' }, secret, { algorithm: 'HS256' });
1010

1111
it('should return the same result as singing synchronously', function(done) {
12-
jwt.sign({ foo: 'bar' }, secret, { algorithm: 'HS256' }, function (asyncToken) {
12+
jwt.sign({ foo: 'bar' }, secret, { algorithm: 'HS256' }, function (err, asyncToken) {
1313
expect(asyncToken).to.be.a('string');
1414
expect(asyncToken.split('.')).to.have.length(3);
1515
expect(asyncToken).to.equal(syncToken);
1616
done();
1717
});
1818
});
19+
20+
it('should throw error', function(done) {
21+
jwt.sign({ foo: 'bar' }, secret, { algorithm: 'HS2561' }, function (err) {
22+
expect(err).to.be.ok();
23+
done();
24+
});
25+
});
1926
});
2027
});

0 commit comments

Comments
 (0)