1const { PassThrough } = require('node:stream'); 2 3module.exports = new PassThrough({ 4 objectMode: true, 5 transform(chunk, encoding, callback) { 6 callback(null) 7 }, 8}); 9