UNPKG

171 BJavaScriptView Raw
1// @flow strict-local
2
3export default function prettifyTime(timeInMs: number): string {
4 return timeInMs < 1000 ? `${timeInMs}ms` : `${(timeInMs / 1000).toFixed(2)}s`;
5}