sebastienrousseau / crypto-service

Operands must both be numbers or strings in addition expressions JS-0377
Anti-pattern
6 months ago6 months old
Operands to the + operator should be both numbers or both strings
21  const app = fastify(fastifyOptions);
22
23  // Logger middleware for fastify instance (logs to console)
24  logger.info("\n\nEnvironment details: " + consoleOutput);25
26  routes(app);
27