Files
memecoin-botV2/.pnpm-store/v10/files/25/ccbcc9324389d2bbfd1605f525fc843be2bf189148ea2fb72f332f8481cb0fe42b997e1483114a21e51b24a55117748d32274d19601c1e1c8edd21d2a80caa

17 lines
263 B
Plaintext

'use strict'
const { Writable } = require('stream')
function run (opts) {
const { port } = opts
return new Writable({
autoDestroy: true,
write (chunk, enc, cb) {
port.postMessage(chunk.toString())
cb()
}
})
}
module.exports = run