refactor: cleanup undefined handling
authorJérôme Benoit <jerome.benoit@sap.com>
Sun, 26 Nov 2023 22:55:02 +0000 (23:55 +0100)
committerJérôme Benoit <jerome.benoit@sap.com>
Sun, 26 Nov 2023 22:55:02 +0000 (23:55 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
src/charging-station/Helpers.ts

index ce0ba3e373cc02cc588615e29f02ebee3eea615a..13721bd6cd04975c601c25a229ffb3a1bd98d199 100644 (file)
@@ -76,7 +76,7 @@ export const getChargingStationId = (
   index: number,
   stationTemplate: ChargingStationTemplate | undefined,
 ): string => {
-  if (isUndefined(stationTemplate)) {
+  if (stationTemplate === undefined) {
     return "Unknown 'chargingStationId'";
   }
   // In case of multiple instances: add instance index to charging station id
@@ -85,7 +85,7 @@ export const getChargingStationId = (
   const idStr = `000000000${index.toString()}`;
   return stationTemplate?.fixedName
     ? stationTemplate.baseName
-    : `${stationTemplate?.baseName}-${instanceIndex.toString()}${idStr.substring(
+    : `${stationTemplate.baseName}-${instanceIndex.toString()}${idStr.substring(
         idStr.length - 4,
       )}${idSuffix}`;
 };