helper.js 280 B

123456789101112
  1. module.exports = {
  2. randomTfbNumber: () => Math.floor(Math.random() * 10000) + 1,
  3. getQueries: (queries) => {
  4. return Math.min(Math.max(parseInt(queries) || 1, 1), 500);
  5. },
  6. additionalFortune: {
  7. id: 0,
  8. message: 'Additional fortune added at request time.'
  9. }
  10. };