mirror of
https://github.com/moghtech/komodo.git
synced 2026-07-16 22:32:43 -05:00
5 lines
132 B
TypeScript
5 lines
132 B
TypeScript
import { Command } from "@monitor/types";
|
|
|
|
export function isValidCommand({ command }: Command) {
|
|
return !command.includes("&&");
|
|
} |