Files
infocom-systems-design/node_modules/thread-stream/test/custom-worker.js
2025-10-03 22:27:28 +03:00

10 lines
149 B
JavaScript

'use strict'
const { parentPort } = require('worker_threads')
parentPort.postMessage({
code: 'CUSTOM-WORKER-CALLED'
})
require('../lib/worker')