This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const text = require("./text.json"); | |
function toHHMMSS(seconds) { | |
var sec_num = parseInt(seconds, 10); // don't forget the second param | |
var hours = Math.floor(sec_num / 3600); | |
var minutes = Math.floor((sec_num - hours * 3600) / 60); | |
var seconds = sec_num - hours * 3600 - minutes * 60; | |
if (hours < 10) { | |
hours = "0" + hours; |