(target, prop)
| 63 | }; |
| 64 | window.chatbase = new Proxy(window.chatbase, { |
| 65 | get(target, prop) { |
| 66 | if (prop === 'q') { |
| 67 | return target.q; |
| 68 | } |
| 69 | // eslint-disable-next-line @typescript-eslint/ban-ts-comment |
| 70 | // @ts-ignore |
| 71 | return (...args) => target(prop, ...args); |
| 72 | }, |
| 73 | }); |
| 74 | } |
| 75 | const onLoad = function () { |
nothing calls this directly
no outgoing calls
no test coverage detected