mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 19:22:32 +03:00
a13a78e3fe
**BREAKING CHANGE:** Breaking changes for `@swc/helpers`. A new major version `0.5.0` is required. **Related issue:** - Closes https://github.com/swc-project/swc/issues/7157
15 lines
358 B
JavaScript
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 _ };
|