Gets the name of a number, even if it's stupidly big. Supersedes TheoryOfNekomata/number-name.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

12 行
213 B

  1. import { addCommands } from '@/commands';
  2. import { createCli } from '@/cli';
  3. import { hideBin } from 'yargs/helpers';
  4. const cli = createCli({
  5. name: 'cli',
  6. });
  7. addCommands(cli);
  8. cli.run(hideBin(process.argv));