index.js   A
last analyzed

Complexity

Total Complexity 1
Complexity/F 1

Size

Lines of Code 4
Function Count 1

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 2
mnd 0
bc 0
fnc 1
dl 0
loc 4
rs 10
bpm 0
cpm 1
noi 0
c 0
b 0
f 0
1
/**
2
 * @author Jinzulen
3
 * @license MIT License
4
 * @copyright Copyright (C) 2019 Jinzulen <[email protected]>
5
 * @description Automate the process of logging leaving users' roles and manually assigning them back upon rejoin on a Discord server.
6
 */
7
8
exports.Instance = function (Configuration)
9
{
10
    return require ("./src") (Configuration);
11
}
12