14 lines
286 B
JavaScript
14 lines
286 B
JavaScript
|
const prettytime = require('prettytime')
|
||
|
class Timer {
|
||
|
startTimer() {
|
||
|
this.start = Date.now();
|
||
|
return this;
|
||
|
}
|
||
|
|
||
|
endTimer() {
|
||
|
const ELAPSED = Date.now() - this.start;
|
||
|
return prettytime(ELAPSED, { decimals: 2 });
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = Timer;
|