mirror of https://github.com/Chocobozzz/PeerTube
10 lines
220 B
TypeScript
10 lines
220 B
TypeScript
|
function isValidPlayerMode (value: any) {
|
||
|
return value === 'webtorrent' || value === 'p2p-media-loader'
|
||
|
}
|
||
|
|
||
|
// ---------------------------------------------------------------------------
|
||
|
|
||
|
export {
|
||
|
isValidPlayerMode
|
||
|
}
|