(key: KeyEvent)
| 5770 | /* ── Helpers ──────────────────────────────────────────────────── */ |
| 5771 | |
| 5772 | function isEscapeKey(key: KeyEvent): boolean { |
| 5773 | return ( |
| 5774 | key.name === "escape" || |
| 5775 | key.code === "Escape" || |
| 5776 | key.baseCode === 27 || |
| 5777 | key.sequence === "\u001b" || |
| 5778 | key.raw === "\u001b" |
| 5779 | ); |
| 5780 | } |
| 5781 | |
| 5782 | function toolArgs(tc?: ToolCall): string { |
| 5783 | if (!tc) return ""; |
no outgoing calls
no test coverage detected