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--) {
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';
}