UNPKG

121 BJavaScriptView Raw
1"use strict";
2
3module.exports = function (time) {
4 return time < 1000 ? `${time}ms` : `${(time / 1000).toFixed(2)}s`;
5};
\No newline at end of file