(value: unknown)
| 679 | } |
| 680 | |
| 681 | function getStringArray(value: unknown): string[] | null { |
| 682 | if (!Array.isArray(value)) { |
| 683 | return null; |
| 684 | } |
| 685 | const items = value.filter((item): item is string => typeof item === "string"); |
| 686 | return items; |
| 687 | } |
| 688 | |
| 689 | function isSafeGatewayBind(bind: string | null): boolean { |
| 690 | if (!bind) return false; |
no outgoing calls
no test coverage detected