暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

timer.js 376B

1234567891011121314
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.Timer = void 0;
  4. class Timer {
  5. constructor() {
  6. this.start = process.hrtime.bigint();
  7. }
  8. stop() {
  9. const stop = process.hrtime.bigint();
  10. const elapsedNanos = stop - this.start;
  11. return Number(elapsedNanos / BigInt(1e6));
  12. }
  13. }
  14. exports.Timer = Timer;