build(deps-dev): apply updates
[poolifier.git] / tests / worker-files / cluster / echoWorker.cjs
index 4534d985b976c2d01d22c0cbd5d82b466a449dab..5196b5db1522820aecd9de332f291319bca63a63 100644 (file)
@@ -1,10 +1,15 @@
 'use strict'
 const { ClusterWorker, KillBehaviors } = require('../../../lib/index.cjs')
 
+/**
+ *
+ * @param data
+ * @returns
+ */
 function echo (data) {
   return data
 }
 
 module.exports = new ClusterWorker(echo, {
-  killBehavior: KillBehaviors.HARD
+  killBehavior: KillBehaviors.HARD,
 })