What do you expect?
npm install simple-timecodestring
number
Timecode
string - Converted Timecode Eg. 2:55:55
js
const time = Timecode.MillisecondsToTime(32000000)
`
$3
Converts a standard time code to milliseconds.
Kind: static method of Timecode
Returns: number - Milliseconds
| Param | Description |
| --- | --- |
| time | The time code. Eg. 2:55:55 |
Example
`js
const ms = Timecode.TimeToMilliseconds("4:30:00");
`
Tests
Tests are written in tape
To run them, just do:
`shell
npm run test
``