refactor: cleanup javascript example
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Thu, 28 Sep 2023 19:46:46 +0000 (21:46 +0200)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Thu, 28 Sep 2023 19:46:46 +0000 (21:46 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
examples/javascript/multiFunctionWorker.js

index f21f8b48bb8cca8df0e3b0b03f06d7e641df438d..da8f972ffa7d3cf68f4e7d059b7356a69080b90e 100644 (file)
@@ -2,13 +2,13 @@
 const { ThreadWorker } = require('poolifier')
 
 function fn0 (data) {
-  console.info('Executing function 0')
-  return { data: `fn0 your input text was '${data.text}'` }
+  console.info('Executing fn0')
+  return { data: `fn0 input text was '${data.text}'` }
 }
 
 function fn1 (data) {
-  console.info('Executing function 1')
-  return { data: `fn1 your input text was '${data.text}'` }
+  console.info('Executing fn1')
+  return { data: `fn1 input text was '${data.text}'` }
 }
 
 module.exports = new ThreadWorker({ fn0, fn1 })