MCPcopy Create free account
hub / github.com/Noumena-Network/code / isVSCodeIde

Function isVSCodeIde

src/utils/ide.ts:280–284  ·  view source on GitHub ↗
(ide: IdeType | null)

Source from the content-addressed store, hash-verified

278}
279
280export function isVSCodeIde(ide: IdeType | null): boolean {
281 if (!ide) return false
282 const config = supportedIdeConfigs[ide]
283 return config && config.ideKind === 'vscode'
284}
285
286export function isJetBrainsIde(ide: IdeType | null): boolean {
287 if (!ide) return false

Callers 4

ide.tsFile · 0.85
isIDEExtensionInstalledFunction · 0.85
installIDEExtensionFunction · 0.85
initializeIdeIntegrationFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected