Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Convert total seconds to ISO 8601 duration string with moment.js

I wanted to check if momentjs is able to convert a given number of seconds to a ISO 8601 formatted duration string.

E.g. 1000 seconds will lead to PT16M40S.

like image 225
nitte93 Avatar asked Nov 14 '16 14:11

nitte93


1 Answers

You can use toISOString on the duration:

moment.duration(1000, 'seconds').toISOString() //"PT16M40S"
like image 110
DevDig Avatar answered Nov 14 '22 21:11

DevDig