13 lines
284 B
TypeScript
13 lines
284 B
TypeScript
|
import { exists } from './misc'
|
||
|
|
||
|
function isVideoRedundancyTarget (value: any) {
|
||
|
return exists(value) &&
|
||
|
(value === 'my-videos' || value === 'remote-videos')
|
||
|
}
|
||
|
|
||
|
// ---------------------------------------------------------------------------
|
||
|
|
||
|
export {
|
||
|
isVideoRedundancyTarget
|
||
|
}
|