-
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: fix readable stream as async iterator function
Since v19.2 it's not possible to use readableStreams as async iterators (confirmed bug). This patch fixes the problem by reading the Stream.Duplex property from 'streams/duplex' instead of 'streams/legacy' module Fixes: #46141
- Loading branch information
1 parent
80fa25b
commit 0e07fc8
Showing
3 changed files
with
33 additions
and
4 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
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 assert = require('assert'); | ||
const { pipeline } = require('node:stream/promises'); | ||
|
||
{ | ||
// Ensure that async iterators can act as readable and writable streams | ||
async function* myCustomReadable() { | ||
yield 'Hello'; | ||
yield 'World'; | ||
} | ||
|
||
// eslint-disable-next-line require-yield | ||
async function* myCustomWritable(stream) { | ||
const messages = []; | ||
for await (const chunk of stream) { | ||
messages.push(chunk); | ||
} | ||
assert.deepStrictEqual(messages, ['Hello', 'World']); | ||
} | ||
|
||
pipeline( | ||
myCustomReadable, | ||
myCustomWritable, | ||
) | ||
.then(common.mustCall()); | ||
} |