Chocobozzz/PeerTube

View on GitHub
server/core/helpers/custom-validators/metrics.ts

Summary

Maintainability
A
0 mins
Test Coverage
function isValidPlayerMode (value: any) {
  // TODO: remove webtorrent in v7
  return value === 'webtorrent' || value === 'web-video' || value === 'p2p-media-loader'
}

// ---------------------------------------------------------------------------

export {
  isValidPlayerMode
}