Cleanups.
authorJérôme Benoit <jerome.benoit@sap.com>
Fri, 23 Oct 2020 11:54:42 +0000 (13:54 +0200)
committerJérôme Benoit <jerome.benoit@sap.com>
Fri, 23 Oct 2020 11:54:42 +0000 (13:54 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
src/utils/Utils.js

index bd8c80368d82169aabc69a1dfca01781fb5007ce..3009ae560f8ab154bfcc5bcd30edad504a1b3b51 100644 (file)
@@ -15,26 +15,6 @@ class Utils {
     return date.toISOString().substr(11, 8);
   }
 
-  static isIterable(obj) {
-    if (obj) {
-      return typeof obj[Symbol.iterator] === 'function';
-    }
-    return false;
-  }
-
-  static isEmptyJSon(document) {
-    // Empty?
-    if (!document) {
-      return true;
-    }
-    // Check type
-    if (typeof document !== 'object') {
-      return true;
-    }
-    // Check
-    return Object.keys(document).length === 0;
-  }
-
   static removeExtraEmptyLines(tab) {
     // Start from the end
     for (let i = tab.length - 1; i > 0; i--) {
@@ -157,6 +137,26 @@ class Utils {
     return JSON.parse(JSON.stringify(jsonDocument));
   }
 
+  static isIterable(obj) {
+    if (obj) {
+      return typeof obj[Symbol.iterator] === 'function';
+    }
+    return false;
+  }
+
+  static isEmptyJSon(document) {
+    // Empty?
+    if (!document) {
+      return true;
+    }
+    // Check type
+    if (typeof document !== 'object') {
+      return true;
+    }
+    // Check
+    return Object.keys(document).length === 0;
+  }
+
   static isString(value) {
     return typeof value === 'string';
   }