()
| 18 | * @returns { string } the current theme root |
| 19 | */ |
| 20 | const getThemeRoot = (): string | undefined => { |
| 21 | if (currThemeRoot === undefined) { |
| 22 | currThemeRoot = getConfiguredThemeRoot(); |
| 23 | } |
| 24 | |
| 25 | return currThemeRoot; |
| 26 | }; |
| 27 | |
| 28 | /** |
| 29 | * Sets theme root for the current theme. |
no outgoing calls
no test coverage detected
searching dependent graphs…