mirror of
https://github.com/nodejs/node.git
synced 2025-08-15 13:48:44 +02:00

PR-URL: https://github.com/nodejs/node/pull/48931 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Debadree Chatterjee <debadree333@gmail.com>
8 lines
173 B
JavaScript
8 lines
173 B
JavaScript
const { PassThrough } = require('node:stream');
|
|
|
|
module.exports = new PassThrough({
|
|
objectMode: true,
|
|
transform(chunk, encoding, callback) {
|
|
callback(null)
|
|
},
|
|
});
|