(id: string)
| 37 | ]; |
| 38 | |
| 39 | export function getOpenPlatformById(id: string): OpenPlatformDefinition | undefined { |
| 40 | return OPEN_PLATFORMS.find((p) => p.id === id); |
| 41 | } |
| 42 | |
| 43 | export function isOpenPlatformId(id: string): boolean { |
| 44 | return OPEN_PLATFORMS.some((p) => p.id === id); |
no outgoing calls
no test coverage detected