()
| 14 | let /** @type any */ singletonInstance = null; |
| 15 | |
| 16 | const getSingletonInstance = () => { |
| 17 | if (singletonInstance === null) { |
| 18 | singletonInstance = registerSingleton(); |
| 19 | } |
| 20 | |
| 21 | return singletonInstance; |
| 22 | }; |
| 23 | |
| 24 | /** @type {any} */ const proxy = new Proxy( |
| 25 | {}, |
no outgoing calls
no test coverage detected