Buk
Results
2
comments of
Buk
comment out these lines of code 
[Utility Process] Data can be returned to the main process for printing through `process.parentPort.postMessage` ``` process.parentPort.postMessage({ event: 'LOG', data }) ``` [Main Process] ``` this.utilityProcess.on('message', (message: any) => { const...