Detect-It-Easy/dbs_min/db/duration
2025-06-21 02:06:59 +03:00

1 line
No EOL
133 B
Text

function duration(o){return o<60?o.toFixed(o<10?2:1)+"s":(o=Math.round(o),Math.floor(o/60)+"m"+("0"+Math.floor(o%60)).slice(-2)+"s")}