(steps: readonly any[])
| 41 | */ |
| 42 | // eslint-disable-next-line @typescript-eslint/no-explicit-any |
| 43 | export function dumpSteps(steps: readonly any[]): string { |
| 44 | return stripAnsiEscapeCodes(stringifySteps(steps)); |
| 45 | } |
| 46 | |
| 47 | /** |
| 48 | * Parses and executes a query string against a graph. |
no test coverage detected