From b776997c38a95496858c72e0edfc9b256f55026f Mon Sep 17 00:00:00 2001 From: MatteZ02 <47610069+MatteZ02@users.noreply.github.com> Date: Mon, 10 Feb 2020 21:54:40 +0200 Subject: [PATCH] Update msToTime.js --- struct/funcs/msToTime.js | 1 - 1 file changed, 1 deletion(-) diff --git a/struct/funcs/msToTime.js b/struct/funcs/msToTime.js index 872771a7..3247cb7e 100644 --- a/struct/funcs/msToTime.js +++ b/struct/funcs/msToTime.js @@ -10,7 +10,6 @@ module.exports = function msToTime(duration, format) { seconds = (seconds < 10) ? "0" + seconds : seconds; if (format === "hh:mm:ss") { - console.log(format) return `${hours}:${minutes}:${seconds}`; } else if (format === "dd:hh:mm:ss") { return `${days}:${hours}:${minutes}:${seconds}`;