(options: InstallCommandOptions)
| 108 | * Generate the full install command for a package. |
| 109 | */ |
| 110 | export function getInstallCommand(options: InstallCommandOptions): string { |
| 111 | return getInstallCommandParts(options).join(' ') |
| 112 | } |
| 113 | |
| 114 | /** |
| 115 | * Generate install command as an array of parts. |
no test coverage detected