Gets the name of a number, even if it's stupidly big. Supersedes TheoryOfNekomata/number-name.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 

12 řádky
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. };