Skip to content

Commit c4158a3

Browse files
committed
fix: Removed unused function
1 parent 21a27ae commit c4158a3

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

src/Core.ts

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -103,16 +103,6 @@ export abstract class APIClient {
103103
return this.options.defaultQuery;
104104
}
105105

106-
protected stringifyQuery(query: Record<string, unknown>): string {
107-
const params = new URLSearchParams();
108-
for (const [key, value] of Object.entries(query)) {
109-
if (value !== undefined && value !== null) {
110-
params.append(key, String(value));
111-
}
112-
}
113-
return params.toString();
114-
}
115-
116106
private makeRequest<Req, Rsp>(
117107
method: HTTPMethod,
118108
path: string,

0 commit comments

Comments
 (0)