()
| 34 | let cache: Record<string, FlaggedPlugin> | null = null |
| 35 | |
| 36 | function getFlaggedPluginsPath(): string { |
| 37 | return join(getPluginsDirectory(), FLAGGED_PLUGINS_FILENAME) |
| 38 | } |
| 39 | |
| 40 | function parsePluginsData(content: string): Record<string, FlaggedPlugin> { |
| 41 | const parsed = jsonParse(content) as unknown |
no test coverage detected