refactor(simulator): sort exports
[e-mobility-charging-stations-simulator.git] / src / utils / CircularArray.ts
index 5fdeeaad1f7e57c2dae60d0c6fe976d623c942bd..ad25bf858b4197bc5c0789b478f89bba84b3ab6a 100644 (file)
@@ -1,6 +1,6 @@
 // Copyright Jerome Benoit. 2021-2023. All Rights Reserved.
 
-export const DEFAULT_CIRCULAR_ARRAY_SIZE = Number.MAX_SAFE_INTEGER;
+const DEFAULT_CIRCULAR_ARRAY_SIZE = 1024;
 
 /**
  * Array with a maximum length shifting items when full.