whitespace

This commit is contained in:
Andrew Kutta 2017-11-13 09:54:19 -06:00 committed by Fabian Arndt
parent 27aaab3161
commit 211f3af592

View File

@ -36,8 +36,8 @@ function noQsMethod(options) {
});
var callback_timeout;
// If callback explicitely set to false, start timeout to disconnect socket
if (options.callback === false || typeof options.callback === "number") {
if (typeof options.callback === "number") {
if (options.callback === false || typeof options.callback === 'number') {
if (typeof options.callback === 'number') {
if (options.callback < 0) {
// If callback is negative(invalid value), make it positive
options.callback = Math.abs(options.callback);
@ -48,7 +48,7 @@ function noQsMethod(options) {
}, (options.callback === false ? 0 : options.callback));
}
socket.emit('unauthorized', error, function() {
if (typeof options.callback === "number") {
if (typeof options.callback === 'number') {
clearTimeout(callback_timeout);
}
socket.disconnect('unauthorized');
@ -237,7 +237,7 @@ function getSecret(request, secret, token, callback) {
} else {
callback(null, secret);
}
};
}
exports.authorize = authorize;
exports.UnauthorizedError = UnauthorizedError;