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