(value)
| 762 | ]); |
| 763 | |
| 764 | function normalizeProviderId(value) { |
| 765 | const providerId = typeof value === "string" ? value.trim() : ""; |
| 766 | return providerId || null; |
| 767 | } |
| 768 | |
| 769 | function formatProviderLabel(providerId, providerConfig = null) { |
| 770 | const configuredName = typeof providerConfig?.name === "string" ? providerConfig.name.trim() : ""; |
no outgoing calls
no test coverage detected