mirror of
https://github.com/denoland/deno.git
synced 2025-01-06 22:35:51 -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:";
|
const encrypted = parsedUrl.protocol === "https:";
|
||||||
let encryptedRid;
|
let encryptedRid;
|
||||||
if (encrypted) {
|
if (encrypted) {
|
||||||
const { 0: rid, 1: localAddr, 2: remoteAddr } = op_tls_start({
|
const [rid, _localAddr, _remoteAddr] = op_tls_start({
|
||||||
rid: this.socket.rid,
|
rid: this.socket.rid,
|
||||||
hostname: parsedUrl.hostname,
|
hostname: parsedUrl.hostname,
|
||||||
caCerts: [],
|
caCerts: [],
|
||||||
|
|
Loading…
Reference in a new issue