chore(core,ext): minor JS optimisations (#13950)

This commit is contained in:
Aapo Alasuutari 2022-03-19 11:26:54 +02:00 committed by GitHub
parent b01bc7faff
commit ad8e238348
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 14 additions and 13 deletions

View file

@ -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);
}