mirror of
https://github.com/warengroup/eximiabots-radiox.git
synced 2025-04-19 09:24:48 +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;
|
|
}
|