UNPKG

sec

Version:

Convert a time string to seconds: `'00:22:17'` → `1337`

26 lines (17 loc) 272 B
# sec > Convert a time string to seconds: `'00:22:17'` → `1337` ## Install ``` $ npm install sec ``` ## Usage ```js import toSeconds from 'sec'; // hours:minutes:seconds toSeconds('00:22:17'); //=> 1337 toSeconds('22:17'); //=> 1337 toSeconds('17'); //=> 17 ```