Gets the name of a number, even if it's stupidly big. Supersedes TheoryOfNekomata/number-name.
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 

10 righe
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. };