(en: Record<string, unknown>)
| 1011 | * Takes a JS object and joins the values into a string separated by ', ' |
| 1012 | */ |
| 1013 | export function enumToString(en: Record<string, unknown>): string { |
| 1014 | return Object.values(en).join(', '); |
| 1015 | } |
| 1016 | |
| 1017 | /** |
| 1018 | * Determine if a server supports retryable writes. |
no outgoing calls
no test coverage detected