mirror of
https://github.com/denoland/deno.git
synced 2024-12-03 17:08:35 -05:00
fmt
This commit is contained in:
parent
65eb113359
commit
be8c90de6f
2 changed files with 37 additions and 32 deletions
|
@ -514,7 +514,10 @@ Object.defineProperties(
|
|||
_flushHeaders() {
|
||||
console.log("flushHeaders");
|
||||
if (this.socket) {
|
||||
console.log("socket found: ", { headerSent: this._headerSent, header: this._header });
|
||||
console.log("socket found: ", {
|
||||
headerSent: this._headerSent,
|
||||
header: this._header,
|
||||
});
|
||||
if (!this._headerSent) {
|
||||
console.log("_writeHeader invoked");
|
||||
this._writeHeader();
|
||||
|
|
|
@ -802,9 +802,11 @@ class ClientRequest extends OutgoingMessage {
|
|||
}
|
||||
console.log("_createUrlStrFromOptions 9");
|
||||
// try {
|
||||
console.log({ url: `${protocol}//${auth ? `${auth}@` : ""}${host}${
|
||||
console.log({
|
||||
url: `${protocol}//${auth ? `${auth}@` : ""}${host}${
|
||||
port === 80 ? "" : `:${port}`
|
||||
}${path}` })
|
||||
}${path}`,
|
||||
});
|
||||
const url = new URL(
|
||||
`${protocol}//${auth ? `${auth}@` : ""}${host}${
|
||||
port === 80 ? "" : `:${port}`
|
||||
|
|
Loading…
Reference in a new issue