PeerTube/server/helpers/custom-validators/video-transcoding.ts

13 lines
285 B
TypeScript
Raw Normal View History

2021-11-18 14:35:08 +01:00
import { exists } from './misc'
function isValidCreateTranscodingType (value: any) {
return exists(value) &&
(value === 'hls' || value === 'webtorrent')
}
// ---------------------------------------------------------------------------
export {
isValidCreateTranscodingType
}