(chain: string[])
| 27 | * Serializes a call chain array back into the header value format. |
| 28 | */ |
| 29 | export function serializeCallChain(chain: string[]): string { |
| 30 | return chain.join(',') |
| 31 | } |
| 32 | |
| 33 | /** |
| 34 | * Validates that the call chain has not exceeded the maximum depth. |
no test coverage detected