UNPKG

djs-menu-v13

Version:

A module for create simple and complex menu for your Discord Bot

14 lines (13 loc) 399 B
/** * A simple function for generate a random id. * @return {string} */ export default function randomId():string { let result = ''; const char = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'; const charLength = char.length; for ( let i = 0; i < charLength; i++ ) { result += char.charAt(Math.floor(Math.random() * charLength)); } return result; }