We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 989c814 commit 16207b4Copy full SHA for 16207b4
1 file changed
src/http/HTTP.ts
@@ -9,8 +9,6 @@ import InvalidAPIKeyError from '../exceptions/InvalidAPIKeyError';
9
import MissingAPIKeyError from '../exceptions/MissingAPIKeyError';
10
import { FortniteAPIResponseData } from './httpStructs';
11
12
-let nmb = 0;
13
-
14
class HTTP {
15
public client: Client;
16
public axios: AxiosInstance;
@@ -36,7 +34,6 @@ class HTTP {
36
34
}
37
35
38
public async fetch(url: string, params?: any): Promise<FortniteAPIResponseData> {
39
- console.log(``)
40
try {
41
const response = await this.axios({
42
url,
@@ -73,6 +70,7 @@ class HTTP {
73
70
throw e;
74
71
75
72
+
76
public async fetchStats(url: string, params?: any): Promise<FortniteAPIResponseData> {
77
78
const response = await this.statsAxios.get(url, {
0 commit comments