mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2025-09-15 12:27:30 +00:00
30 lines
401 B
JavaScript
30 lines
401 B
JavaScript
'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);
|
|
}
|
|
};
|