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.

10 lines
184 B

  1. import { Cli, CliOptions } from './packages/cli-wrapper';
  2. export const createCli = (options: CliOptions) => {
  3. const cli = new Cli(options);
  4. // TODO setup CLI here
  5. return cli;
  6. };