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.
|
1234567 |
- export namespace meta {
- export const host = process.env.HOST ?? '0.0.0.0';
-
- export const port = Number(process.env.PORT ?? 8080);
-
- export const env = process.env.NODE_ENV ?? 'development';
- }
|