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

京公网安备 11010502036488号