mirror of
https://github.com/moghtech/komodo.git
synced 2026-08-20 08:01:09 +00:00
5 lines
132 B
TypeScript
5 lines
132 B
TypeScript
import { Command } from "@monitor/types";
|
|
|
|
export function isValidCommand({ command }: Command) {
|
|
return !command.includes("&&");
|
|
} |