mirror of
https://github.com/arcodange-org/mediabunny.git
synced 2026-09-27 19:03:46 +02:00
Implement ReadOrchestrator class, add highly optimized UrlSource
This commit is contained in:
@@ -633,3 +633,7 @@ export const isSafari = () => {
|
||||
* @public
|
||||
*/
|
||||
export type MaybePromise<T> = T | Promise<T>;
|
||||
|
||||
export const closedIntervalsOverlap = (startA: number, endA: number, startB: number, endB: number) => {
|
||||
return startA <= endB && startB <= endA;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user