Added prettier standard to support prettier and use it in combination with standard
[poolifier.git] / tests / workers / emptyWorker.js
CommitLineData
106744f7 1'use strict'
2const { ThreadWorker } = require('../../lib/workers')
3
cf9aa6c3 4function test (data) {}
106744f7 5
1f9a5a44 6module.exports = new ThreadWorker(test, { maxInactiveTime: 500 })