timestamp-to-milliseconds
v0.0.1
Published
Convert a timestamp 00:00:00,000 to milliseconds.
Maintainers
Readme
timestamp-to-seconds 
Convert a timestamp string to milliseconds.
'00:00:02,345'→2345
Install
$ npm install --save timestamp-to-millisecondsUsage
const milliseconds = require('timestamp-to-milliseconds');
milliseconds('00:00:59,345');
//=> 59345
milliseconds('00:00:59');
//=> 59000API
timestampToMilliseconds(timestamp)
Returns the timestamp's total number of milliseconds.
timestamp
Type: string
The timestamp in the format of HH:MM:SS or HH:MM:SS,000 that you want to convert to milliseconds.
License
MIT © Michael Wuergler
