Use ternary operator in helpers methods
authorJérôme Benoit <jerome.benoit@sap.com>
Mon, 2 May 2022 10:49:38 +0000 (12:49 +0200)
committerJérôme Benoit <jerome.benoit@sap.com>
Mon, 2 May 2022 10:49:38 +0000 (12:49 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
src/utils/Utils.ts

index 074b1073b5bef8f102edc0d2a7e738c5c6097cc1..5035efdba22786f6f53e54cc1652073c9336e642 100644 (file)
@@ -161,10 +161,7 @@ export default class Utils {
   }
 
   public static isIterable<T>(obj: T): boolean {
-    if (obj) {
-      return typeof obj[Symbol.iterator] === 'function';
-    }
-    return false;
+    return obj ? typeof obj[Symbol.iterator] === 'function' : false;
   }
 
   public static isString(value: unknown): boolean {
@@ -180,11 +177,8 @@ export default class Utils {
   }
 
   public static isNullOrUndefined(value: unknown): boolean {
-    // eslint-disable-next-line no-eq-null, eqeqeq
-    if (value == null) {
-      return true;
-    }
-    return false;
+    // eslint-disable-next-line eqeqeq, no-eq-null
+    return value == null ? true : false;
   }
 
   public static isEmptyArray(object: unknown): boolean {