(raw: string)
| 95 | const resolveBodyInput = (input: Option.Option<string>) => resolveOptionalTextInput(input); |
| 96 | |
| 97 | export const parseProxyBody = (raw: string): unknown => { |
| 98 | try { |
| 99 | return parseJsonIsh(raw); |
| 100 | } catch { |
| 101 | return raw; |
| 102 | } |
| 103 | }; |
| 104 | |
| 105 | const formatProxyOutput = ( |
| 106 | result: Pick<SessionProxyExecuteResponse, 'status' | 'data' | 'headers' | 'binary_data'> |
no test coverage detected
searching dependent graphs…