travel/admin/node_modules/@hapi/hoek/lib/bench.js

30 lines
401 B
JavaScript
Raw Normal View History

2024-06-24 11:28:18 +08:00
'use strict';
const internals = {};
module.exports = internals.Bench = class {
constructor() {
this.ts = 0;
this.reset();
}
reset() {
this.ts = internals.Bench.now();
}
elapsed() {
return internals.Bench.now() - this.ts;
}
static now() {
const ts = process.hrtime();
return (ts[0] * 1e3) + (ts[1] / 1e6);
}
};