()
| 8 | } |
| 9 | |
| 10 | export function buildSocketIoExtraHeaderOptions(): { |
| 11 | extraHeaders?: Record<string, string> |
| 12 | } { |
| 13 | if (Object.keys(configuration.extraHeaders).length === 0) { |
| 14 | return {} |
| 15 | } |
| 16 | |
| 17 | return { |
| 18 | extraHeaders: { ...configuration.extraHeaders } |
| 19 | } |
| 20 | } |
no outgoing calls
no test coverage detected