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