MCPcopy
hub / github.com/codeaashu/claude-code / isSupportedPlatform

Function isSupportedPlatform

src/commands/desktop/index.ts:3–11  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1import type { Command } from '../../commands.js'
2
3function isSupportedPlatform(): boolean {
4 if (process.platform === 'darwin') {
5 return true
6 }
7 if (process.platform === 'win32' && process.arch === 'x64') {
8 return true
9 }
10 return false
11}
12
13const desktop = {
14 type: 'local-jsx',

Callers 3

isHiddenFunction · 0.70
isSandboxingEnabledFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected