I have this function
const performance = require('perf_hooks');
var t0 = performance.now();
setInterval(printStatus, 20000);
function printStatus() {
console.log(
`Total records: ${count}`
);
console.log("Time elapsed" + (performance.now() - t0)/60000 + "minutes")
}
This prints minutes like this: Time elapsed0.3334145895500978minutes
I want it to become human readable HH:MM:S How do I make it happen?