hensei-web/node_modules/parcel-bundler/lib/utils/prettifyTime.js
2020-09-11 06:44:42 -07:00

5 lines
No EOL
121 B
JavaScript

"use strict";
module.exports = function (time) {
return time < 1000 ? `${time}ms` : `${(time / 1000).toFixed(2)}s`;
};