()
| 55 | const isWebRuntime = Platform.OS === "web" && typeof window !== "undefined"; |
| 56 | |
| 57 | const getWebSearchParams = (): URLSearchParams | null => { |
| 58 | if (!isWebRuntime) { |
| 59 | return null; |
| 60 | } |
| 61 | |
| 62 | return new URLSearchParams(window.location.search); |
| 63 | }; |
| 64 | |
| 65 | const getInitialSearchParams = (): ShowcaseSearchParams | null => |
| 66 | getWebSearchParams() ?? getShowcaseSearchParamsFromBuildEnv(); |
no outgoing calls
no test coverage detected