(value)
| 475 | `https://${env.PUBLIC_SITE_HOSTNAME || "signals.forwardfuture.com"}`; |
| 476 | } |
| 477 | |
| 478 | function normalizeBasePath(value) { |
| 479 | const segments = String(value).split("/").filter(Boolean); |
| 480 | return segments.length ? `/${segments.join("/")}` : ""; |
| 481 | } |
| 482 | |
| 483 | function stripBasePath(pathname, basePath) { |
no outgoing calls
no test coverage detected