UNPKG

@forwardslashns/fws-cli

Version:

CLI meant to work together with other Forwardslash boilerplates.

8 lines (7 loc) 258 B
export const getAdditionalOptions = (command) => { if (!command.additionalOptions?.length) return []; return command.additionalOptions.map((option) => ({ command: `${option.command}`, description: `${option.description}`, })); };