Indentation cleanup
authorJérôme Benoit <jerome.benoit@sap.com>
Sat, 2 Oct 2021 23:12:21 +0000 (01:12 +0200)
committerJérôme Benoit <jerome.benoit@sap.com>
Sat, 2 Oct 2021 23:12:21 +0000 (01:12 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
src/performance/storage/JSONFileStorage.ts

index 4eb5680d85f06e01e9233e0e6f91b9befce6f11f..7b3633a78a338a519d64c6b796701506cf3f4316 100644 (file)
@@ -23,7 +23,8 @@ export class JSONFileStorage extends Storage {
           const fileData = fs.readFileSync(this.dbName, 'utf8');
           const performanceRecords: Statistics[] = fileData ? JSON.parse(fileData) as Statistics[] : [];
           performanceRecords.push(performanceStatistics);
-          fs.writeFileSync(this.dbName,
+          fs.writeFileSync(
+            this.dbName,
             JSON.stringify(performanceRecords,
               (key, value) => {
                 if (value instanceof Map) {
@@ -35,7 +36,8 @@ export class JSONFileStorage extends Storage {
                 return value as Statistics;
               },
               2),
-            'utf8');
+            'utf8'
+          );
         } catch (error) {
           FileUtils.handleFileException(this.logPrefix, Constants.PERFORMANCE_RECORDS_FILETYPE, this.dbName, error);
         }