(tool: string)
| 271 | * @returns `true` if the tool is known to modify files on disk |
| 272 | */ |
| 273 | export function isEditTool(tool: string): boolean { |
| 274 | return EDIT_TOOLS.has(tool) |
| 275 | } |
| 276 | |
| 277 | /** |
| 278 | * Truncate tool output to the configured maximum length. |
no test coverage detected