forked from lug/matterbridge
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			161 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			161 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package wray
 | |
| 
 | |
| func contains(target string, slice []string) bool {
 | |
|   for _, t := range(slice) {
 | |
|     if t == target {
 | |
|       return true
 | |
|     }
 | |
|   }
 | |
|   return false
 | |
| }
 | 
