UNPKG

@forwardslashns/fws-cli

Version:

CLI meant to work together with other Forwardslash boilerplates.

9 lines (7 loc) 255 B
export const getRequiredOptions = (command) => { if (!command.mandatoryOptions?.length) return []; return command.mandatoryOptions.map((option) => ({ command: `${option.command}`, description: `${option.description}`, })); };