()
| 309 | } |
| 310 | |
| 311 | export async function getKnownPlatforms(): Promise<string[]> { |
| 312 | return ['web', 'android', 'ios']; |
| 313 | } |
| 314 | |
| 315 | export async function isValidPlatform(platform: string): Promise<boolean> { |
| 316 | return (await getKnownPlatforms()).includes(platform); |
no outgoing calls
no test coverage detected