UNPKG

@graphteon/juricode

Version:

We are forging the future with lines of digital steel

6 lines 258 B
export 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")}`; }; //# sourceMappingURL=format-ms.js.map