Ver código fonte

Adds elapsed to stopwatch

main
Eric Amodio 2 anos atrás
pai
commit
d1e2e5e62a
1 arquivos alterados com 5 adições e 0 exclusões
  1. +5
    -0
      src/system/stopwatch.ts

+ 5
- 0
src/system/stopwatch.ts Ver arquivo

@ -54,6 +54,11 @@ export class Stopwatch {
}
}
elapsed(): number {
const [secs, nanosecs] = hrtime(this.time);
return secs * 1000 + Math.floor(nanosecs / 1000000);
}
log(options?: StopwatchLogOptions): void {
this.logCore(this.scope, options, false);
}

Carregando…
Cancelar
Salvar