deno.land / x / yargs@v17.6.0-deno / test / esm / fixtures / commands / subcommands / c.mjs
12345678export const command = 'c <x> <y>';export const describe = 'add x to y';// eslint-disable-next-line no-unused-varsexport const builder = yargs => {};export const handler = function (argv) { argv.output.value = argv.x + argv.y;};
Version Info