(target, prop, receiver)
| 93 | |
| 94 | selfProxy = new Proxy(context, { |
| 95 | get(target, prop, receiver) { |
| 96 | if (Reflect.has(target, prop)) { |
| 97 | return Reflect.get(target, prop, receiver) |
| 98 | } |
| 99 | return globalThis[prop as 'crypto'] |
| 100 | }, |
| 101 | }) as any |
| 102 | |
| 103 | this._vw_workerTarget.addEventListener('message', (e) => { |
no test coverage detected