UNPKG

229 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.default = prettifyTime;
7
8function prettifyTime(timeInMs) {
9 return timeInMs < 1000 ? `${timeInMs}ms` : `${(timeInMs / 1000).toFixed(2)}s`;
10}
\No newline at end of file