Merge pull request #775 from SAP/combined-prs-branch
[e-mobility-charging-stations-simulator.git] / ui / web / src / composables / Utils.ts
index cf4baf5d5fe9c8b569359d248daea9b82160e917..851ba4318fc337474875025a85d900799ce2ebbf 100644 (file)
@@ -1,5 +1,3 @@
-import util from 'node:util';
-
 const isUndefined = (value: unknown): boolean => {
   return typeof value === 'undefined';
 };
@@ -30,7 +28,7 @@ export const promiseWithTimeout = <T>(
   timeoutError: Error,
   timeoutCallback: () => void = () => {
     /* This is intentional */
-  }
+  },
 ): Promise<T> => {
   // Create a timeout promise that rejects in timeout milliseconds
   const timeoutPromise = new Promise<never>((_, reject) => {