()
| 317 | } |
| 318 | |
| 319 | export async function getKnownCommunityPlatforms(): Promise<string[]> { |
| 320 | return ['electron']; |
| 321 | } |
| 322 | |
| 323 | export async function isValidCommunityPlatform(platform: string): Promise<boolean> { |
| 324 | return (await getKnownCommunityPlatforms()).includes(platform); |
no outgoing calls
no test coverage detected