jsmreese / moment-duration-format

Format function plugin for the Moment Duration object.
MIT License
968 stars 120 forks source link

00:00:00, 00:00:01, 00:00:02, etc... #18

Closed mjgallag closed 9 years ago

mjgallag commented 9 years ago

@jsmreese apologies if i'm missing something here but is there anyway currently to output hh:mm:ss where all digits are displayed all of the time?

jsmreese commented 9 years ago

Set the trim option to false.

moment.duration(10, "seconds").format("hh:mm:ss", { trim: false });
// "00:00:10"
mjgallag commented 9 years ago

@jsmreese apologies, clearly i was missing something, i read the trim section but it didn't quite click until now, thanks for the quick response!

jsmreese commented 9 years ago

No worries :)