Dirty hack to silence a warning that is already fixed in #18.
This commit is contained in:
Francois Marier 2014-05-16 16:13:16 +12:00
Родитель 194a1b97e3
Коммит b29c44ff99
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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 () {