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

20 lines (9 loc) 330 B
const fs = require("fs") 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("")}` } }