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.
 
 

12 righe
288 B

  1. import fastify, { FastifyServerOptions } from 'fastify';
  2. export interface CreateServerOptions extends FastifyServerOptions {}
  3. export const createServer = (options = {} as CreateServerOptions) => {
  4. const server = fastify(options);
  5. // TODO set up server stuff here
  6. return server;
  7. };