D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
etb1lp46s9ed
/
www
/
wabot.delyntro.com
/
node_modules
/
pino
/
test
/
fixtures
/
ts
/
Filename :
transport-worker.ts
back
Copy
import { Writable } from 'node:stream' export default (): Writable => { const myTransportStream = new Writable({ autoDestroy: true, write (chunk, _enc, cb) { console.log(chunk.toString()) cb() }, defaultEncoding: 'utf8' }) return myTransportStream }