1 import { exists } from './misc'
3 function isVideoRedundancyTarget (value: any) {
4 return exists(value) &&
5 (value === 'my-videos' || value === 'remote-videos')
8 // ---------------------------------------------------------------------------
11 isVideoRedundancyTarget