UNPKG

discord-mini-games-es.js

Version:

Un paquete para implementar minijuegos usando discord.js-v14 en español

9 lines 275 B
const wyr = require('./assets/wyr.json').wyr; /** * Get a random Would You Rather question. * @returns {String} - Random Would You Rather question. */ function WouldYouRather() { return wyr[Math.floor(Math.random() * (wyr.length - 1))]; } module.exports = WouldYouRather;