1
0
Fork 0

Added Statistics calculation

Statistics now show calculated values
This commit is contained in:
Techognito 2025-09-04 17:30:00 +02:00
parent fe87374e47
commit fc0f69dacb
2147 changed files with 141321 additions and 39 deletions

View file

@ -0,0 +1 @@
export { isObjectEmpty } from "./isObjectEmpty.js";

12
node_modules/@mui/x-internals/isObjectEmpty/index.js generated vendored Normal file
View file

@ -0,0 +1,12 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "isObjectEmpty", {
enumerable: true,
get: function () {
return _isObjectEmpty.isObjectEmpty;
}
});
var _isObjectEmpty = require("./isObjectEmpty");

View file

@ -0,0 +1 @@
export declare function isObjectEmpty(object: any): boolean;

View file

@ -0,0 +1,13 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.isObjectEmpty = isObjectEmpty;
function isObjectEmpty(object) {
// eslint-disable-next-line
for (const _ in object) {
return false;
}
return true;
}