Check for unused variables
Dirty hack to silence a warning that is already fixed in #18.
This commit is contained in:
Родитель
194a1b97e3
Коммит
b29c44ff99
|
@ -15,7 +15,7 @@
|
||||||
"nonew": true,
|
"nonew": true,
|
||||||
"quotmark": "single",
|
"quotmark": "single",
|
||||||
"undef": true,
|
"undef": true,
|
||||||
"unused": false,
|
"unused": true,
|
||||||
"strict": false,
|
"strict": false,
|
||||||
|
|
||||||
"node": true
|
"node": true
|
||||||
|
|
|
@ -17,7 +17,7 @@ module.exports = function (BLOCK_INTERVAL_MS, INVALID_AGENT_INTERVAL_MS, now) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function isBadAgent(agent) {
|
function isBadAgent(agent) {
|
||||||
return false // TODO
|
return false && agent // TODO
|
||||||
}
|
}
|
||||||
|
|
||||||
IpRecord.prototype.isBlocked = function () {
|
IpRecord.prototype.isBlocked = function () {
|
||||||
|
|
Загрузка…
Ссылка в новой задаче