(transforms: Transform[])
| 79 | |
| 80 | /** Whether any transform rules to be applied for responses. */ |
| 81 | export function hasResponseTransforms(transforms: Transform[]): boolean { |
| 82 | return transforms.some(t => t.type === 'response.headers'); |
| 83 | } |
| 84 | |
| 85 | function resolveKey( |
| 86 | key: KeyRule, |
no outgoing calls
no test coverage detected