Fix isEmptyString() semantic
authorJérôme Benoit <jerome.benoit@sap.com>
Wed, 25 Jan 2023 23:02:59 +0000 (00:02 +0100)
committerJérôme Benoit <jerome.benoit@sap.com>
Wed, 25 Jan 2023 23:02:59 +0000 (00:02 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
src/utils/Utils.ts

index 6557a588446455506656c7f7133e8fe85c5881f0..0952be9bf206a3e8ea83a33fe61f65e723bea37e 100644 (file)
@@ -193,7 +193,7 @@ export default class Utils {
   }
 
   public static isEmptyString(value: unknown): boolean {
-    return Utils.isString(value) && (value as string).trim().length === 0;
+    return Utils.isString(value) ? (value as string).trim().length === 0 : true;
   }
 
   public static isUndefined(value: unknown): boolean {