mirror of
https://github.com/warengroup/eximiabots-radiox.git
synced 2025-07-01 10:23:37 +00:00
10 lines
220 B
TypeScript
10 lines
220 B
TypeScript
import { Snowflake } from "discord.js";
|
|
|
|
export default function isDev(devIDs : string[], authorID : Snowflake){
|
|
for (const devID of devIDs){
|
|
if(authorID == devID){
|
|
return true;
|
|
}
|
|
}
|
|
}
|