(timeStr: string)
| 132 | seekBar.appendChild(fragment); |
| 133 | }; |
| 134 | export const convertTimeToSeconds = (timeStr: string): number => { |
| 135 | return (timeStr || '').split(':').reduce((acc, time) => 60 * acc + +time, 0); |
| 136 | }; |
| 137 | |
| 138 | export const getCurrentSegmentName = ( |
| 139 | timeStr: string, |
no outgoing calls
no test coverage detected