chore: eslint

This commit is contained in:
pk5ls20 2024-11-14 13:29:39 +08:00
parent dab0f9ab45
commit 6a08b15095
No known key found for this signature in database
GPG Key ID: 6370ED7A169F493A
5 changed files with 26 additions and 26 deletions

View File

@ -8,7 +8,7 @@ export class RequestUtil {
const client = url.startsWith('https') ? https : http;
return new Promise((resolve, reject) => {
const req = client.get(url, (res) => {
let cookies: { [key: string]: string } = {};
const cookies: { [key: string]: string } = {};
res.on('data', () => { }); // Necessary to consume the stream
res.on('end', () => {