(target, key)
| 53 | */ |
| 54 | const rest_props_handler = { |
| 55 | get(target, key) { |
| 56 | if (target.exclude.has(key)) return; |
| 57 | return target.props[key]; |
| 58 | }, |
| 59 | set(target, key) { |
| 60 | if (DEV) { |
| 61 | // TODO should this happen in prod too? |
no test coverage detected