refactor: move javascript examples in their own folder
[poolifier.git] / examples / javascript / multiFunctionWorker.js
CommitLineData
106744f7 1'use strict'
60fbd6d6 2const { ThreadWorker } = require('poolifier')
106744f7 3
a86b6df1 4function fn0 (data) {
53795b86 5 console.info('Executing function 0')
70a4f5ea 6 return { data: 'fn0 your input text was' + data.text }
106744f7 7}
8
a86b6df1 9function fn1 (data) {
53795b86 10 console.info('Executing function 1')
70a4f5ea 11 return { data: 'fn1 your input text was' + data.text }
a86b6df1
JB
12}
13
14module.exports = new ThreadWorker({ fn0, fn1 })