(value: string)
| 169 | }; |
| 170 | |
| 171 | const normalizeThemeRootParamValue = (value: string) => { |
| 172 | const themeRoot = value.split("@")[1]; |
| 173 | |
| 174 | return themeRoot; |
| 175 | }; |
| 176 | |
| 177 | const normalizeThemeParamValue = (param: string, value: string) => { |
| 178 | if (param === "theme" && value.includes("@")) { // the theme parameter might have @<URL-TO-THEME> in the value - strip this |
no outgoing calls
no test coverage detected
searching dependent graphs…