mirror of
https://github.com/zoriya/v10.git
synced 2026-08-10 16:09:18 +00:00
6 lines
202 B
TypeScript
6 lines
202 B
TypeScript
import { SOURCES, type SourceId } from './sources';
|
|
|
|
export function getMuxAssetId(source: SourceId): string | undefined {
|
|
return SOURCES[source].url.match(/stream\.mux\.com\/([a-zA-Z0-9]+)/)?.[1];
|
|
}
|