Gets the name of a number, even if it's stupidly big. Supersedes TheoryOfNekomata/number-name.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
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));