(text?: string)
| 73 | const prettyPrefix = chalkError(prefix); |
| 74 | |
| 75 | const withIndents = (text?: string) => |
| 76 | text |
| 77 | ?.split("\n") |
| 78 | .map((line) => `${indent}${line}`) |
| 79 | .join("\n"); |
| 80 | |
| 81 | const prettyBody = withIndents(body); |
| 82 | const prettyFooter = withIndents(footer); |
no outgoing calls
no test coverage detected
searching dependent graphs…