(cause: Cause.Cause<E>)
| 467 | |
| 468 | /** @internal */ |
| 469 | export const causePretty = <E>(cause: Cause.Cause<E>): string => |
| 470 | causePrettyErrors<E>(cause).map(renderPrettyError).join("\n") |
| 471 | |
| 472 | const renderPrettyError = (e: Error): string | undefined => |
| 473 | e.cause ? `${e.stack} {\n${renderErrorCause(e.cause as Error, " ")}\n}` : e.stack |
no test coverage detected