From 6b6669f0dfaca4b1ae339e079241cff648e6e5ca Mon Sep 17 00:00:00 2001 From: Yoshiya Hinosawa Date: Thu, 3 Oct 2024 18:42:33 +0900 Subject: [PATCH] chore: fix lint --- ext/node/polyfills/http.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/node/polyfills/http.ts b/ext/node/polyfills/http.ts index 0e4459f637..f93a693904 100644 --- a/ext/node/polyfills/http.ts +++ b/ext/node/polyfills/http.ts @@ -453,7 +453,7 @@ class ClientRequest extends OutgoingMessage { const encrypted = parsedUrl.protocol === "https:"; let encryptedRid; if (encrypted) { - const { 0: rid, 1: localAddr, 2: remoteAddr } = op_tls_start({ + const [rid, _localAddr, _remoteAddr] = op_tls_start({ rid: this.socket.rid, hostname: parsedUrl.hostname, caCerts: [],