- 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
15 lines
361 B
JavaScript
15 lines
361 B
JavaScript
import { _ as _get } from "./_get.js";
|
|
import { _ as _set } from "./_set.js";
|
|
|
|
function _update(target, property, receiver, isStrict) {
|
|
return {
|
|
get _() {
|
|
return _get(target, property, receiver);
|
|
},
|
|
set _(value) {
|
|
_set(target, property, value, receiver, isStrict);
|
|
}
|
|
};
|
|
}
|
|
export { _update as _ };
|