@graphteon/juricode
Version:
We are forging the future with lines of digital steel
10 lines • 384 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.formatMs = void 0;
const formatMs = (ms) => {
const minutes = Math.floor(ms / 1000 / 60);
const seconds = Math.floor((ms / 1000) % 60);
return `${String(minutes).padStart(2, "0")}:${String(seconds).padStart(2, "0")}`;
};
exports.formatMs = formatMs;
//# sourceMappingURL=format-ms.js.map