Total Complexity | 3 |
Complexity/F | 1 |
Lines of Code | 18 |
Function Count | 3 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | /** |
||
7 | module.exports = function (Credentials, Utilities) |
||
8 | { |
||
9 | const Methods = {}; |
||
10 | |||
11 | Methods.GIFs = function (Limit, Callback) |
||
12 | { |
||
13 | return require("./Methods/Trending/GIFs")(Credentials, |
||
14 | Utilities, Limit, Callback); |
||
15 | }; |
||
16 | |||
17 | Methods.Terms = function (Callback) |
||
18 | { |
||
19 | return require("./Methods/Trending/Terms")(Credentials, |
||
20 | Utilities, Callback); |
||
21 | }; |
||
22 | |||
23 | return Methods; |
||
24 | }; |