docs: add changelog entry
[poolifier.git] / benchmarks / internal / thread-worker.mjs
index e56eaa4cbcbb7cb0844439d3efd489278be15755..b0994e77bd1af7183f98559481e43fdaf7ec92bb 100644 (file)
@@ -1,15 +1,15 @@
-import { isMainThread } from 'worker_threads'
+import { isMainThread } from 'node:worker_threads'
 import { ThreadWorker } from '../../lib/index.mjs'
-import { executeTaskFunction } from '../benchmarks-utils.mjs'
-import { TaskFunctions } from '../benchmarks-types.mjs'
+import { executeTaskFunction } from '../benchmarks-utils.js'
+import { TaskFunctions } from '../benchmarks-types.js'
 
-const debug = false
-
-function taskFunction (data) {
+const taskFunction = data => {
   data = data || {}
   data.function = data.function || TaskFunctions.jsonIntegerSerialization
+  data.debug = data.debug || false
   const res = executeTaskFunction(data)
-  debug === true && console.debug('This is the main thread ' + isMainThread)
+  data.debug === true &&
+    console.debug(`This is the main thread ${isMainThread}`)
   return res
 }