mirror of
				https://github.com/warengroup/eximiabots-radiox.git
				synced 2025-10-31 06:31:36 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			268 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			268 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| module.exports = function isDev(devList, authorID){
 | |
|     let response = false;
 | |
|     Object.keys(devList).forEach(function(oneDev) {
 | |
|         let devID = devList[oneDev];
 | |
|         if(authorID == devID){
 | |
|             response = true;
 | |
|         }
 | |
|     });
 | |
|     return response;
 | |
| }
 | 
