mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
f458e5b573
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>
9 lines
173 B
JavaScript
9 lines
173 B
JavaScript
const { PassThrough } = require('node:stream');
|
|
|
|
module.exports = new PassThrough({
|
|
objectMode: true,
|
|
transform(chunk, encoding, callback) {
|
|
callback(null)
|
|
},
|
|
});
|