UNPKG

setmusic

Version:

An easy-to-use music library that provides features for Discord bots to play music and take action on many of the music that is playing.

8 lines (6 loc) 209 B
function formatTime(seconds) { const minutes = Math.floor(seconds / 60); seconds = Math.floor(seconds % 60); return `${minutes}:${seconds < 10 ? "0" : ""}${seconds}`; } module.exports = { formatTime };