<script> const _proxy = (object, ...prototypes) => { return new Proxy(object, { get(target, propKey) { if (prototypes.includes(propKey)) { return 'noright' } return target[propKey] } }) } </script>
<script> const _proxy = (object, ...prototypes) => { return new Proxy(object, { get(target, propKey) { if (prototypes.includes(propKey)) { return 'noright' } return target[propKey] } }) } </script>