(pathname: string)
| 43 | const tracer = trace.getTracer("executor-cloud-docs-proxy"); |
| 44 | |
| 45 | export const isDocsPath = (pathname: string): boolean => |
| 46 | pathname === "/docs" || pathname.startsWith("/docs/"); |
| 47 | |
| 48 | export const isPosthogPath = (pathname: string): boolean => |
| 49 | pathname === POSTHOG_PROXY_PATH || pathname.startsWith(`${POSTHOG_PROXY_PATH}/`); |
no outgoing calls
no test coverage detected