Simplify eslint configuration
[poolifier.git] / tests / worker-files / cluster / echoWorker.js
1 'use strict'
2 const { ClusterWorker } = require('../../../lib/index')
3
4 function echo (data) {
5 return data
6 }
7
8 module.exports = new ClusterWorker(echo)