()
| 325 | } |
| 326 | |
| 327 | export async function getKnownEnterprisePlatforms(): Promise<string[]> { |
| 328 | return ['windows']; |
| 329 | } |
| 330 | |
| 331 | export async function isValidEnterprisePlatform(platform: string): Promise<boolean> { |
| 332 | return (await getKnownEnterprisePlatforms()).includes(platform); |
no outgoing calls
no test coverage detected