UNPKG

discord-giveaway-easy

Version:

A module allowing the simple creation of a discord giveaway with your bot supported by Discord.js^14.0.0

11 lines (8 loc) 291 B
module.exports = { customID : function() { let caractaire = [..."ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"] let ID = []; for (let i = 0; i < 10; i++) ID.push(caractaire[Math.floor(Math.random() * caractaire.length)]) return `${ID.join("")}` } }