Skip to content

Commit 8111d69

Browse files
apapirovskiBethGriggs
authored andcommitted
http: remove unnecessary bind
process.nextTick accepts additional parameters which are passed through to the callback. Use that instead of binding the function to a context. PR-URL: #28131 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
1 parent 1c2d699 commit 8111d69

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/_http_client.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ ClientRequest.prototype._implicitHeader = function _implicitHeader() {
322322

323323
ClientRequest.prototype.abort = function abort() {
324324
if (!this.aborted) {
325-
process.nextTick(emitAbortNT.bind(this));
325+
process.nextTick(emitAbortNT, this);
326326
}
327327
this.aborted = true;
328328

@@ -340,8 +340,8 @@ ClientRequest.prototype.abort = function abort() {
340340
};
341341

342342

343-
function emitAbortNT() {
344-
this.emit('abort');
343+
function emitAbortNT(req) {
344+
req.emit('abort');
345345
}
346346

347347
function ondrain() {

0 commit comments

Comments
 (0)