Removed uneccessary variable

This commit is contained in:
plane000
2018-05-31 13:37:07 +01:00
parent b5641501fd
commit 703664ebbb

View File

@@ -2,7 +2,6 @@ const ping = require('ping');
setInterval(doStuff, 1000);
var downFor = [];
var lastState;
var connected;
var counter = 0;
@@ -66,4 +65,4 @@ function getTime() {
var t = new Date();
var time = (pad(t.getHours(), 2) + ':' + pad(t.getMinutes(), 2) + ':' + pad(t.getSeconds(), 2))
return time;
}
}