mirror of
https://github.com/denoland/deno.git
synced 2025-01-05 13:59:01 -05:00
chore: fix lint
This commit is contained in:
parent
34ae10643b
commit
6b6669f0df
1 changed files with 1 additions and 1 deletions
|
@ -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: [],
|
||||
|
|
Loading…
Reference in a new issue