refactor(simulator): avoid branching in empty array helpers
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Fri, 24 Feb 2023 15:57:52 +0000 (16:57 +0100)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Fri, 24 Feb 2023 15:57:52 +0000 (16:57 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
src/utils/Utils.ts

index f701cea041ab831d1b1ff323123e02c60b69b11b..7195ce09ecfff2bfab6ed5c5016b876190830c8b 100644 (file)
@@ -223,17 +223,11 @@ export class Utils {
   }
 
   public static isEmptyArray(object: unknown | unknown[]): boolean {
-    if (Array.isArray(object) && object.length === 0) {
-      return true;
-    }
-    return false;
+    return Array.isArray(object) && object.length === 0;
   }
 
   public static isNotEmptyArray(object: unknown | unknown[]): boolean {
-    if (Array.isArray(object) && object.length > 0) {
-      return true;
-    }
-    return false;
+    return Array.isArray(object) && object.length > 0;
   }
 
   public static isEmptyObject(obj: object): boolean {