build(deps-dev): apply updates
[poolifier.git] / benchmarks / internal / thread-worker.mjs
index 92508dd887c80e7f6c210d87dec673c0b8952ee3..a5873926ffa587b16f345ab84e8cddd48564a3a7 100644 (file)
@@ -1,13 +1,15 @@
 import { isMainThread } from 'node:worker_threads'
+
 import { ThreadWorker } from '../../lib/index.mjs'
-import { executeTaskFunction } from '../benchmarks-utils.cjs'
 import { TaskFunctions } from '../benchmarks-types.cjs'
+import { executeTaskFunction } from '../benchmarks-utils.mjs'
 
 const taskFunction = data => {
   data = data || {}
-  data.function = data.function || TaskFunctions.jsonIntegerSerialization
+  data.function = data.function || TaskFunctions.factorial
   data.debug = data.debug || false
   const res = executeTaskFunction(data)
+  // eslint-disable-next-line @typescript-eslint/no-unused-expressions
   data.debug === true &&
     console.debug(`This is the main thread ${isMainThread}`)
   return res