mirror of
https://github.com/sussy-code/smov.git
synced 2024-12-21 14:47:41 +01:00
8 lines
260 B
TypeScript
8 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;
|
|
}
|