Currently, I am utilizing the moment duration format library to calculate the total duration of time. It is working as expected, but a slight issue arises when the time duration exceeds 4 digits - it automatically adds a comma in the hours section (similar to money format).
This is my current code:
moment.duration(33869100, 'seconds').format('hh:mm:ss', {trim: false})
The output is: 9,408:05:00. Please note the comma in the hours section. I actually need the output to be in this format: 9408:05:00, without the comma following money format rules.