Bakhtina Sofya b84cb877be 1st comm | hace 2 semanas | |
---|---|---|
.. | ||
index.js | hace 2 semanas | |
license | hace 2 semanas | |
package.json | hace 2 semanas | |
readme.md | hace 2 semanas |
Convert a time string to seconds:
'00:22:17'
→1337
$ npm install --save sec
var sec = require('sec');
// hours:minutes:seconds
sec('00:22:17');
//=> 1337
sec('22:17');
//=> 1337
sec('17');
//=> 17
MIT © Sindre Sorhus