heartbeat-monitor/node_modules/recharts/lib/util/Global.js
Matt Bruce bed1169443 Initial commit: Heartbeat Monitor dashboard
- 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
2026-02-18 11:16:01 -06:00

27 lines
678 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.Global = void 0;
var parseIsSsrByDefault = function parseIsSsrByDefault() {
return !(typeof window !== 'undefined' && window.document && window.document.createElement && window.setTimeout);
};
var Global = exports.Global = {
isSsr: parseIsSsrByDefault(),
get: function get(key) {
return Global[key];
},
set: function set(key, value) {
if (typeof key === 'string') {
Global[key] = value;
} else {
var keys = Object.keys(key);
if (keys && keys.length) {
keys.forEach(function (k) {
Global[k] = key[k];
});
}
}
}
};