()
| 58 | |
| 59 | let _isOfficialMarketplaceInstalledCache: boolean | undefined |
| 60 | async function isOfficialMarketplaceInstalled(): Promise<boolean> { |
| 61 | if (_isOfficialMarketplaceInstalledCache !== undefined) { |
| 62 | return _isOfficialMarketplaceInstalledCache |
| 63 | } |
| 64 | const config = await loadKnownMarketplacesConfigSafe() |
| 65 | _isOfficialMarketplaceInstalledCache = OFFICIAL_MARKETPLACE_NAME in config |
| 66 | return _isOfficialMarketplaceInstalledCache |
| 67 | } |
| 68 | |
| 69 | async function isMarketplacePluginRelevant( |
| 70 | pluginName: string, |
no test coverage detected