()
| 87 | }; |
| 88 | |
| 89 | export const getInitialArgs = (): string => { |
| 90 | const param = getSearchParam("serverArgs"); |
| 91 | if (param) return param; |
| 92 | return localStorage.getItem("lastArgs") || ""; |
| 93 | }; |
| 94 | |
| 95 | // Returns a map of config key -> value from query params if present |
| 96 | export const getConfigOverridesFromQueryParams = ( |
nothing calls this directly
no test coverage detected