(event)
| 132 | } |
| 133 | |
| 134 | function isShellEvent(event) { |
| 135 | const type = typeof event?.type === "string" ? event.type : ""; |
| 136 | return Boolean( |
| 137 | extractShellCommand(event) || |
| 138 | type.includes("exec_command") || |
| 139 | type.includes("shell"), |
| 140 | ); |
| 141 | } |
| 142 | |
| 143 | function isToolEvent(event) { |
| 144 | const type = typeof event?.type === "string" ? event.type : ""; |
no test coverage detected