MCPcopy
hub / github.com/gitroomhq/postiz-app / get

Function get

apps/frontend/src/components/layout/chatbase.component.tsx:65–72  ·  view source on GitHub ↗
(target, prop)

Source from the content-addressed store, hash-verified

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 () {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected