An open API service indexing awesome lists of open source software.

https://github.com/akbaruddin/duration

hh:mm:ss to milliseconds
https://github.com/akbaruddin/duration

hours milliseconds minutes number seconds string time

Last synced: 4 months ago
JSON representation

hh:mm:ss to milliseconds

Awesome Lists containing this project

README

          

# Duration

Simple JavaScript function to convert string format `hh:mm:ss` to milisecconds

### Example
```javascript
// `hh:mm:ss` to milliseconds
// `00:00:10` => `10000`

const time = duration("00:00:20");
console.log(time); // output 20000
```