Remove unneccessary comments

This commit is contained in:
IDeletedSystem64 2022-08-10 22:27:57 -05:00
parent b7c4cb011e
commit 3a5f1ce2d2
1 changed files with 0 additions and 2 deletions

View File

@ -5,8 +5,6 @@ module.exports = (uptime) => {
const tHrs = parseInt((tSeconds % 86400) / 3600);
const tMins = parseInt((tSeconds % 3600) / 60);
const tSecs = parseInt(tSeconds % 60);
// We can probably just return tSeconds (totalSeconds) instead of parsing.
// So that was a fucking lie.
const days = tDays + (tDays === 1 ? ' day' : ' days');
const hours = tHrs + (tHrs === 1 ? ' hour' : ' hours');