(error: Error)
| 218 | || (is.iterable(body) && (body[Symbol.iterator]() as unknown) === body); |
| 219 | |
| 220 | const isTransientWriteError = (error: Error): boolean => { |
| 221 | const {code} = error; |
| 222 | return typeof code === 'string' && transientWriteErrorCodes.has(code); |
| 223 | }; |
| 224 | |
| 225 | const getConnectionListedHeaders = (headers: Record<string, string | string[] | undefined>): Set<string> => { |
| 226 | const connectionListedHeaders = new Set<string>(); |
no test coverage detected
searching dependent graphs…