blob: cf792f9964aa3df69f185833be8d3b11f0d97481 (
plain) (
tree)
|
|
import { exists } from './misc'
function isValidCreateTranscodingType (value: any) {
return exists(value) &&
(value === 'hls' || value === 'webtorrent')
}
// ---------------------------------------------------------------------------
export {
isValidCreateTranscodingType
}
|