mirror of https://github.com/Chocobozzz/PeerTube
				
				
				
			
		
			
				
	
	
		
			12 lines
		
	
	
		
			296 B
		
	
	
	
		
			TypeScript
		
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			296 B
		
	
	
	
		
			TypeScript
		
	
	
| import { isStreamingPlaylist, MStreamingPlaylistVideo, MVideo } from '@server/typings/models'
 | |
| 
 | |
| function extractVideo (videoOrPlaylist: MVideo | MStreamingPlaylistVideo) {
 | |
|   return isStreamingPlaylist(videoOrPlaylist)
 | |
|     ? videoOrPlaylist.Video
 | |
|     : videoOrPlaylist
 | |
| }
 | |
| 
 | |
| export {
 | |
|   extractVideo
 | |
| }
 |