feat: add initial continous benchmarking
[poolifier.git] / benchmarks / benchmarks-utils.mjs
index 0aeca085d9115959c46ee719f0d1c20740057def..98893f62ddde73b6b0b10feb86b84e79ad8e4683 100644 (file)
@@ -78,6 +78,11 @@ export const runPoolifierTest = async (
   })
 }
 
+export const LIST_FORMATTER = new Intl.ListFormat('en-US', {
+  style: 'long',
+  type: 'conjunction'
+})
+
 export const executeAsyncFn = async fn => {
   try {
     await fn()