sec
v2.0.0
Published
Convert a time string to seconds: `'00:22:17'` → `1337`
Downloads
175,320
Maintainers
Readme
sec
Convert a time string to seconds:
'00:22:17'
→1337
Install
$ npm install sec
Usage
import toSeconds from 'sec';
// hours:minutes:seconds
toSeconds('00:22:17');
//=> 1337
toSeconds('22:17');
//=> 1337
toSeconds('17');
//=> 17