Updated src

This commit is contained in:
Matte
2021-06-08 12:01:56 +03:00
parent acef9404b2
commit 3cb07107d5
30 changed files with 686 additions and 559 deletions

10
src/client/funcs/isDev.js Normal file
View File

@ -0,0 +1,10 @@
module.exports = function (devList, authorID){
let response = false;
Object.keys(devList).forEach(function(oneDev) {
devID = devList[oneDev];
if(authorID == devID){
response = true;
}
});
return response;
}