Skip to content

Commit

Permalink
stream: allow returning null from pipeline tail
Browse files Browse the repository at this point in the history
  • Loading branch information
ronag committed Feb 22, 2022
1 parent 45b5ca8 commit 896ae0e
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/internal/streams/pipeline.js
Expand Up @@ -288,7 +288,9 @@ function pipelineImpl(streams, callback, opts) {
then.call(ret,
(val) => {
value = val;
pt.write(val);
if (val != null) {
pt.write(val);
}
if (end) {
pt.end();
}
Expand Down
16 changes: 16 additions & 0 deletions test/parallel/test-stream-pipeline.js
Expand Up @@ -1511,3 +1511,19 @@ const tsp = require('timers/promises');
assert.strictEqual(s.destroyed, true);
}));
}


{
const s = new PassThrough({ objectMode: true });
pipeline(async function*() {
await Promise.resolve();
yield 'hello';
yield 'world';
yield 'world';
}, s, async function(source) {
return null;
}, common.mustCall((err, val) => {
assert.strictEqual(err, undefined);
assert.strictEqual(val, null);
}));
}

0 comments on commit 896ae0e

Please sign in to comment.