14 lines
314 B
JavaScript
14 lines
314 B
JavaScript
const { Writable } = require('stream')
|
|
|
|
module.exports = (options) => {
|
|
const myTransportStream = new Writable({
|
|
autoDestroy: true,
|
|
write (chunk, enc, cb) {
|
|
// apply a transform and send to stdout
|
|
console.log(chunk.toString().toUpperCase())
|
|
cb()
|
|
}
|
|
})
|
|
return myTransportStream
|
|
}
|