We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b45021 commit 9032a1eCopy full SHA for 9032a1e
src/utils.ts
@@ -4,7 +4,6 @@ import http from "node:http";
4
import qs from "node:querystring";
5
import { RequestTimeoutError } from "./errors.ts";
6
import { config } from "./config.ts";
7
-import { Buffer } from "node:buffer";
8
import process from "node:process";
9
10
/**
@@ -88,7 +87,7 @@ export function execute(
88
87
let data = "";
89
90
// A chunk of data has been received
91
- resp.on("data", (chunk: Buffer) => {
+ resp.on("data", (chunk) => {
92
data += chunk;
93
});
94
0 commit comments