7 lines
201 B
JavaScript
7 lines
201 B
JavaScript
// fmtSec — формат секунд: "Nс" / "Nм Nс".
|
||
|
||
export function fmtSec(s) {
|
||
s = Math.max(0, Math.round(s));
|
||
return s >= 60 ? Math.floor(s / 60) + 'м ' + (s % 60) + 'с' : s + 'с';
|
||
}
|