Kaynağa Gözat

Adds elapsed to stopwatch

main
Eric Amodio 2 yıl önce
ebeveyn
işleme
d1e2e5e62a
1 değiştirilmiş dosya ile 5 ekleme ve 0 silme
  1. +5
    -0
      src/system/stopwatch.ts

+ 5
- 0
src/system/stopwatch.ts Dosyayı Görüntüle

@ -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);
}

Yükleniyor…
İptal
Kaydet