Merge pull request #65 from pioardi/dependabot/npm_and_yarn/standard-16.0.2
[poolifier.git] / tests / workers / echoWorker.js
1 'use strict'
2 const { ThreadWorker } = require('../../lib/workers')
3
4 function echo (data) {
5 return data
6 }
7
8 module.exports = new ThreadWorker(echo, { maxInactiveTime: 500 })