(pathname: string)
| 30 | |
| 31 | /** Whether an exact pathname belongs to the public marketing worker. */ |
| 32 | export const isMarketingPath = (pathname: string): boolean => |
| 33 | MARKETING_PATHS.some((p) => pathname === p || pathname.startsWith(`${p}/`)); |
| 34 | |
| 35 | /** |
| 36 | * Project a production request onto the marketing service-binding request. |
no outgoing calls
no test coverage detected