Parcourir la source

Adds elapsed to stopwatch

main
Eric Amodio il y a 2 ans
Parent
révision
d1e2e5e62a
1 fichiers modifiés avec 5 ajouts et 0 suppressions
  1. +5
    -0
      src/system/stopwatch.ts

+ 5
- 0
src/system/stopwatch.ts Voir le fichier

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

Chargement…
Annuler
Enregistrer