11 lines
165 B
JavaScript
11 lines
165 B
JavaScript
const { Writable } = require('stream')
|
|
|
|
module.exports = () => {
|
|
return new Writable({
|
|
autoDestroy: true,
|
|
write (chunk, enc, cb) {
|
|
cb()
|
|
}
|
|
})
|
|
}
|