UNPKG

253 BJavaScriptView Raw
1module.exports = class Stopwatch {
2 constructor() {
3 this.timestamp = 0
4 }
5
6 start() {
7 this.timestamp = Date.now()
8 return this.timestamp
9 }
10
11 check() {
12 return Date.now() - this.timestamp
13 }
14
15 clear() {
16 this.timestamp = 0
17 }
18}