mirror of
https://github.com/denoland/deno.git
synced 2025-09-26 12:19:12 +00:00
chore(core,ext): minor JS optimisations (#13950)
This commit is contained in:
parent
b01bc7faff
commit
ad8e238348
3 changed files with 14 additions and 13 deletions
|
@ -279,9 +279,7 @@
|
|||
}
|
||||
|
||||
send(p, addr) {
|
||||
const remote = { hostname: "127.0.0.1", ...addr };
|
||||
|
||||
const args = { ...remote, rid: this.rid };
|
||||
const args = { hostname: "127.0.0.1", ...addr, rid: this.rid };
|
||||
return opSend(args, p);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue