Skip to content

expandCommandAbbreviationOnBoundary

expandCommandAbbreviationOnBoundary(inputValue, commandAbbreviations): string

Defined in: domain/cli/command-abbreviation.ts:92

入力中commandを単語境界でcommand abbreviation展開します。

string

CLI入力値です。

readonly CommandAlias[]

command abbreviation一覧です。

string

展開後の入力値です。

const result = expandCommandAbbreviationOnBoundary("g ", [{ name: "g", command: "go" }]);
// "go "