Skip to content

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

License

Notifications You must be signed in to change notification settings

sindresorhus/sec

Repository files navigation

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