()
| 163 | const _cache = new Map(); |
| 164 | |
| 165 | function _getCurrentTime() { |
| 166 | if (!playing || !_audioStarted) return _startOffset; |
| 167 | return Math.min((ctx.currentTime - _startCtxTime) * _playbackRate + _startOffset, _duration); |
| 168 | } |
| 169 | |
| 170 | // --- fetch helpers --- |
| 171 |
no outgoing calls
no test coverage detected