-
Notifications
You must be signed in to change notification settings - Fork 29.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
stream: cleanup and fix Readable.wrap
Cleans up Readable.wrap and also ensures destroy is called for certain events. PR-URL: #34204 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: James M Snell <[email protected]>
- Loading branch information
Showing
3 changed files
with
56 additions
and
52 deletions.
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,27 @@ | ||
'use strict'; | ||
const common = require('../common'); | ||
|
||
const Readable = require('_stream_readable'); | ||
const EE = require('events').EventEmitter; | ||
|
||
const oldStream = new EE(); | ||
oldStream.pause = () => {}; | ||
oldStream.resume = () => {}; | ||
|
||
{ | ||
new Readable({ | ||
autoDestroy: false, | ||
destroy: common.mustCall() | ||
}) | ||
.wrap(oldStream); | ||
oldStream.emit('destroy'); | ||
} | ||
|
||
{ | ||
new Readable({ | ||
autoDestroy: false, | ||
destroy: common.mustCall() | ||
}) | ||
.wrap(oldStream); | ||
oldStream.emit('close'); | ||
} |
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