import { FileType } from '../../types/FileType';
import type Statistics from '../../types/Statistics';
import FileUtils from '../../utils/FileUtils';
+import Utils from '../../utils/Utils';
import { Storage } from './Storage';
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) {
public static secureRandom(): number {
return crypto.randomBytes(4).readUInt32LE() / 0x100000000;
}
+
+ public static JSONStringifyWithMapSupport(
+ obj: Record<string, unknown> | Record<string, unknown>[],
+ space?: number
+ ): string {
+ return JSON.stringify(
+ obj,
+ (key, value: Record<string, unknown>) => {
+ if (value instanceof Map) {
+ return {
+ dataType: 'Map',
+ value: [...value],
+ };
+ }
+ return value;
+ },
+ space
+ );
+ }
}