File size: 294 Bytes
3a65265
 
 
 
 
 
 
 
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");
}