(value: unknown)
| 248 | } |
| 249 | |
| 250 | function normalizeString(value: unknown): string { |
| 251 | return typeof value === 'string' ? value.trim() : ''; |
| 252 | } |
| 253 | |
| 254 | function createDefaultCodexProviderRelayAdapterServer( |
| 255 | options: CodexProviderRelayAdapterServerOptions, |
no outgoing calls
no test coverage detected