Strict null check fixes
[e-mobility-charging-stations-simulator.git] / src / performance / storage / JsonFileStorage.ts
index d1c294d8185e2d4526b2eeeec3e29f31f0f21220..63d12a439a0aa6a54283b4717ce93ce0e1ba596a 100644 (file)
@@ -1,13 +1,14 @@
-// Copyright Jerome Benoit. 2021. All Rights Reserved.
+// Copyright Jerome Benoit. 2021-2023. All Rights Reserved.
 
 import fs from 'fs';
 
 import lockfile from 'proper-lockfile';
 
+import { Storage } from './Storage';
 import { FileType } from '../../types/FileType';
-import type Statistics from '../../types/Statistics';
+import type { Statistics } from '../../types/Statistics';
 import FileUtils from '../../utils/FileUtils';
-import { Storage } from './Storage';
+import Utils from '../../utils/Utils';
 
 export class JsonFileStorage extends Storage {
   private fd: number | null = null;
@@ -30,19 +31,7 @@ export class JsonFileStorage extends Storage {
           performanceRecords.push(performanceStatistics);
           fs.writeFileSync(
             this.dbName,
-            JSON.stringify(
-              performanceRecords,
-              (key, value) => {
-                if (value instanceof Map) {
-                  return {
-                    dataType: 'Map',
-                    value: [...value],
-                  };
-                }
-                return value as Statistics;
-              },
-              2
-            ),
+            Utils.JSONStringifyWithMapSupport(performanceRecords, 2),
             'utf8'
           );
         } catch (error) {