(query?: string)
| 243 | export const originalCh = clients[0]!; |
| 244 | |
| 245 | const cleanQuery = (query?: string) => |
| 246 | typeof query === 'string' |
| 247 | ? query.replace(/\n/g, '').replace(/\s+/g, ' ').trim() |
| 248 | : undefined; |
| 249 | |
| 250 | /** |
| 251 | * Run `operation` against the next round-robin node, retrying on the next |
no test coverage detected