-
Notifications
You must be signed in to change notification settings - Fork 29.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
http: return this from OutgoingMessage#destroy()
This commit updates OutgoingMessage#destroy() to return `this` for consistency with other writable streams. PR-URL: #32789 Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
- Loading branch information
1 parent
d87031d
commit e1e3ae1
Showing
2 changed files
with
16 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
'use strict'; | ||
|
||
// Test that http.OutgoingMessage,prototype.destroy() returns `this`. | ||
require('../common'); | ||
|
||
const assert = require('assert'); | ||
const http = require('http'); | ||
const outgoingMessage = new http.OutgoingMessage(); | ||
|
||
assert.strictEqual(outgoingMessage.destroyed, false); | ||
assert.strictEqual(outgoingMessage.destroy(), outgoingMessage); | ||
assert.strictEqual(outgoingMessage.destroyed, true); | ||
assert.strictEqual(outgoingMessage.destroy(), outgoingMessage); |