продолжаем вносить все

This commit is contained in:
Alexey Kasyanchuk
2016-12-31 06:32:56 +03:00
parent a1330db184
commit d8928b8eb4
7 changed files with 16 additions and 0 deletions

16
lib/token.js Normal file
View File

@ -0,0 +1,16 @@
'use strict'
module.exports = class {
constructor() {
this.generate()
setInterval(()=> this.generate(), 60000*15)
}
isValid(t) {
return t.toString() === this.token.toString()
}
generate() {
this.token = new Buffer([parseInt(Math.random()*200), parseInt(Math.random()*200)])
}
}