- Full-featured monitoring dashboard for local web apps - Real-time status tracking with uptime percentages - Visual sparklines for status history - Add/Edit/Delete apps dynamically - Categories and color coding - Auto-refresh every 30 seconds - API endpoints for apps and status management
23 lines
544 B
JavaScript
23 lines
544 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
Object.defineProperty(exports, "cloneDeep", {
|
|
enumerable: true,
|
|
get: function() {
|
|
return cloneDeep;
|
|
}
|
|
});
|
|
function cloneDeep(value) {
|
|
if (Array.isArray(value)) {
|
|
return value.map((child)=>cloneDeep(child));
|
|
}
|
|
if (typeof value === "object" && value !== null) {
|
|
return Object.fromEntries(Object.entries(value).map(([k, v])=>[
|
|
k,
|
|
cloneDeep(v)
|
|
]));
|
|
}
|
|
return value;
|
|
}
|