(mode: string)
| 422 | } |
| 423 | |
| 424 | function inferType(mode: string): "blob" | "tree" | "commit" { |
| 425 | if (mode.startsWith("04")) return "tree"; |
| 426 | if (mode === "160000") return "commit"; |
| 427 | return "blob"; |
| 428 | } |
| 429 | |
| 430 | function errorMessage(cause: unknown): string { |
| 431 | if (cause instanceof Error) return cause.message; |