Spaces:
Sleeping
Sleeping
File size: 294 Bytes
fb4d8fe | 1 2 3 4 5 6 7 8 9 | 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");
}
|