mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-04 18:29:27 +02:00
9 lines
220 B
TypeScript
9 lines
220 B
TypeScript
function isValidPlayerMode (value: any) {
|
|
return value === 'webtorrent' || value === 'p2p-media-loader'
|
|
}
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
export {
|
|
isValidPlayerMode
|
|
}
|