* A trap for the in operator.
(target, prop: string)
| 85 | * A trap for the in operator. |
| 86 | */ |
| 87 | has(target, prop: string) { |
| 88 | return getKeysFromAllScopes(target).includes(prop); |
| 89 | }, |
| 90 | |
| 91 | /** |
| 92 | * A trap for Object.getOwnPropertyNames and Object.getOwnPropertySymbols. |
nothing calls this directly
no test coverage detected