D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
etb1lp46s9ed
/
wabot.whatzi.online
/
node_modules
/
thread-stream
/
test
/
Filename :
get-context.js
back
Copy
'use strict' const { Writable } = require('stream') const parentPort = require('worker_threads').parentPort async function run (opts) { return new Writable({ autoDestroy: true, write (chunk, enc, cb) { if (parentPort) { parentPort.postMessage({ code: 'EVENT', name: 'context', args: opts.$context }) } cb() } }) } module.exports = run