UNPKG
@develable/rutapbot-d20
Version:
latest (0.0.1)
0.0.1
[KR] Rutap Bot will makes your discord life better!
@develable/rutapbot-d20
/
.JS (Old)
/
src
/
lib
/
rutapcommands.js
14 lines
(11 loc)
•
317 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
const
d_settings =
require
(
'./../settings/default_settings.js'
);
exports
.
isBotAdmin
=
function
(
id
) {
let
isBotAdmin =
false
; d_settings.
owner_id
.
some
(
(
item
) =>
{
if
(item == id) { isBotAdmin =
true
;
return
isBotAdmin; } });
return
isBotAdmin; };