Files
bzzz/install/config-ui/node_modules/@swc/helpers/esm/_update.js
anthonyrawlins c177363a19 Save current BZZZ config-ui state before CHORUS branding update
🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-19 00:19:00 +10:00

15 lines
358 B
JavaScript

import { _get } from "./_get.js";
import { _set } from "./_set.js";
export function _update(target, property, receiver, isStrict) {
return {
get _() {
return _get(target, property, receiver);
},
set _(value) {
_set(target, property, value, receiver, isStrict);
}
};
}
export { _update as _ };