Skip to content
Snippets Groups Projects
Commit a45aa742 authored by Loïc Correnson's avatar Loïc Correnson
Browse files

[dome] fix microseconds format

parent 307305e5
No related branches found
No related tags found
No related merge requests found
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
For instance, returns `'250ms'` for an input time of `.25`. For instance, returns `'250ms'` for an input time of `.25`.
*/ */
export function duration(time : number) : string { export function duration(time : number) : string {
if (time < 1.0e-3) return `${Math.round(time * 1.0e6)}ns`; if (time < 1.0e-3) return `${Math.round(time * 1.0e6)}µs`;
if (time < 1.0) return `${Math.round(time * 1.0e3)}ms`; if (time < 1.0) return `${Math.round(time * 1.0e3)}ms`;
if (time < 60) return `${Math.round(time)}s`; if (time < 60) return `${Math.round(time)}s`;
if (time < 3600) return `${Math.round(time / 60)}m`; if (time < 3600) return `${Math.round(time / 60)}m`;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment