- 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
20 lines
493 B
JavaScript
20 lines
493 B
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.shallowEqual = shallowEqual;
|
|
function shallowEqual(a, b) {
|
|
/* eslint-disable no-restricted-syntax */
|
|
for (var key in a) {
|
|
if ({}.hasOwnProperty.call(a, key) && (!{}.hasOwnProperty.call(b, key) || a[key] !== b[key])) {
|
|
return false;
|
|
}
|
|
}
|
|
for (var _key in b) {
|
|
if ({}.hasOwnProperty.call(b, _key) && !{}.hasOwnProperty.call(a, _key)) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
} |