2022-08-12 09:41:29 -05:00
|
|
|
function isValidPlayerMode (value: any) {
|
2023-07-11 02:21:13 -05:00
|
|
|
// TODO: remove webtorrent in v7
|
|
|
|
return value === 'webtorrent' || value === 'web-video' || value === 'p2p-media-loader'
|
2022-08-12 09:41:29 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
isValidPlayerMode
|
|
|
|
}
|