OpenClawBot / src /cli /command-options.ts
darkfire514's picture
Upload 2526 files
fb4d8fe verified
import type { Command } from "commander";
export function hasExplicitOptions(command: Command, names: readonly string[]): boolean {
if (typeof command.getOptionValueSource !== "function") {
return false;
}
return names.some((name) => command.getOptionValueSource(name) === "cli");
}