(pathname: string)
| 28 | ]; |
| 29 | |
| 30 | export const isMarketingPath = (pathname: string) => |
| 31 | MARKETING_PATHS.some((p) => pathname === p || pathname.startsWith(`${p}/`)); |
| 32 | |
| 33 | const getMarketingWorker = () => env.MARKETING as { fetch: typeof fetch } | undefined; |
| 34 |
no outgoing calls
no test coverage detected