deno.land / x / yargs@v17.6.0-deno / test / esm / fixtures / commands / b.mjs
123456789export const command = 'b <str1> <str2>';export const describe = 'string commands';export const builder = yargs => { yargs.string(['str1', 'str2']);};export const handler = function (argv) { argv.output.text = `${argv.str1} ${argv.str2}`;};
Version Info