refactor: use helper for null in undefined in condition
[e-mobility-charging-stations-simulator.git] / src / utils / CircularArray.ts
index bd768673605021a31aaf498278f0d50db6a8fa41..4fafe5280a78cd849667f94e12e7e198e16f2dc7 100644 (file)
@@ -1,6 +1,6 @@
 // Copyright Jerome Benoit. 2021-2023. All Rights Reserved.
 
-const DEFAULT_CIRCULAR_ARRAY_SIZE = 1024;
+export const DEFAULT_CIRCULAR_ARRAY_SIZE = 1024;
 
 /**
  * Array with a maximum length and shifting items when full.