mirror of
https://github.com/sussy-code/smov.git
synced 2024-12-22 14:57:40 +01:00
9 lines
260 B
TypeScript
9 lines
260 B
TypeScript
|
export function handleBuffered(time: number, buffered: TimeRanges): number {
|
||
|
for (let i = 0; i < buffered.length; i += 1) {
|
||
|
if (buffered.start(buffered.length - 1 - i) < time) {
|
||
|
return buffered.end(buffered.length - 1 - i);
|
||
|
}
|
||
|
}
|
||
|
return 0;
|
||
|
}
|