mirror of https://github.com/Chocobozzz/PeerTube
11 lines
280 B
TypeScript
11 lines
280 B
TypeScript
|
function isValidPlayerMode (value: any) {
|
||
|
// TODO: remove webtorrent in v7
|
||
|
return value === 'webtorrent' || value === 'web-video' || value === 'p2p-media-loader'
|
||
|
}
|
||
|
|
||
|
// ---------------------------------------------------------------------------
|
||
|
|
||
|
export {
|
||
|
isValidPlayerMode
|
||
|
}
|