refactor: cleanup enums namespace
[poolifier.git] / benchmarks / benchmarks-types.js
index 7a951feece39d6580286f40201f5a51119248f31..4411fbbe3a4a39499e81bf45f5892905fafd7981 100644 (file)
@@ -6,13 +6,13 @@ const WorkerFunctions = {
 }
 
 const PoolTypes = {
-  FIXED: 'fixed',
-  DYNAMIC: 'dynamic'
+  fixed: 'fixed',
+  dynamic: 'dynamic'
 }
 
 const WorkerTypes = {
-  THREAD: 'thread',
-  CLUSTER: 'cluster'
+  thread: 'thread',
+  cluster: 'cluster'
 }
 
 module.exports = { PoolTypes, WorkerFunctions, WorkerTypes }