Total Complexity | 4 |
Complexity/F | 1 |
Lines of Code | 24 |
Function Count | 4 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | /** |
||
7 | module.exports = function (Credentials, Utilities) |
||
8 | { |
||
9 | const Methods = {}; |
||
10 | |||
11 | Methods.Find = function (IDs, Callback) |
||
12 | { |
||
13 | return require("./Methods/Search/Find")(Credentials, |
||
14 | Utilities, IDs, Callback); |
||
15 | }; |
||
16 | |||
17 | Methods.Query = function (Term, Limit, Callback) |
||
18 | { |
||
19 | return require("./Methods/Search/Query")(Credentials, |
||
20 | Utilities, Term, Limit, Callback); |
||
21 | }; |
||
22 | |||
23 | Methods.Random = function (Key, Limit, Callback) |
||
24 | { |
||
25 | return require("./Methods/Search/Random")(Credentials, |
||
26 | Utilities, Key, Limit, Callback); |
||
27 | }; |
||
28 | |||
29 | return Methods; |
||
30 | }; |