Merge branch 'main' of https://github.com/Frontesque/VueTube into working

This commit is contained in:
Alex 2022-05-05 16:01:25 +12:00
commit bd83b0a81d
1 changed files with 16 additions and 0 deletions

View File

@ -77,6 +77,22 @@ function linkParser(url) {
}
const delay = (ms) => new Promise((res) => setTimeout(res, ms));
//--- Convert Time To Human Readable String ---//
function humanTime(givenTime) {
const minutes = Math.floor(givenTime / 60);
const seconds = givenTime - minutes * 60;
const hours = Math.floor(givenTime / 3600);
return {
formatted: (hours ? hours+":" : "") + `${minutes}:${seconds}`,
raw: {
hours: hours,
minutes: minutes,
seconds: seconds
}
}
}
//--- End Convert Time To Human Readable String ---//
module.exports = {
getBetweenStrings,
hexToRgb,