build(deps-dev): apply updates
[poolifier.git] / src / pools / selection-strategies / least-elu-worker-choice-strategy.ts
index 6eaaacfbd4545d82c52c22eadc160ee286a8011a..ead02e850c8a82b4abf38c7a79b0f2155d19fb0a 100644 (file)
@@ -5,12 +5,11 @@ import { AbstractWorkerChoiceStrategy } from './abstract-worker-choice-strategy.
 import type {
   IWorkerChoiceStrategy,
   TaskStatisticsRequirements,
-  WorkerChoiceStrategyOptions
+  WorkerChoiceStrategyOptions,
 } from './selection-strategies-types.js'
 
 /**
  * Selects the worker with the least ELU.
- *
  * @typeParam Worker - Type of worker which manages the strategy.
  * @typeParam Data - Type of data sent to the worker. This can only be structured-cloneable data.
  * @typeParam Response - Type of execution response. This can only be structured-cloneable data.
@@ -29,8 +28,8 @@ export class LeastEluWorkerChoiceStrategy<
     elu: {
       aggregate: true,
       average: false,
-      median: false
-    }
+      median: false,
+    },
   }
 
   /** @inheritDoc */