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