Bump mocha from 8.3.1 to 8.3.2 (#268)
[poolifier.git] / tests / worker-files / cluster / echoWorker.js
... / ...
CommitLineData
1'use strict'
2const { ClusterWorker, KillBehaviors } = require('../../../lib/index')
3
4function echo (data) {
5 return data
6}
7
8module.exports = new ClusterWorker(echo)