Skip to content

Commit 3305cf0

Browse files
ilyapxziluvatar
authored andcommitted
verify: remove process.nextTick (#302)
running synchronous code asynchronously using process.nextTick has a negative latency impact
1 parent 0be5409 commit 3305cf0

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

verify.js

+1-6
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,7 @@ module.exports = function (jwtString, secretOrPublicKey, options, callback) {
2121
var done;
2222

2323
if (callback) {
24-
done = function() {
25-
var args = Array.prototype.slice.call(arguments, 0);
26-
return process.nextTick(function() {
27-
callback.apply(null, args);
28-
});
29-
};
24+
done = callback;
3025
} else {
3126
done = function(err, data) {
3227
if (err) throw err;

0 commit comments

Comments
 (0)