mirror of
https://github.com/warengroup/eximiabots-radiox.git
synced 2024-11-10 05:00:18 +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;
|
|
} |