UNPKG

kurdistaname47

Version:

kurdistan 47 bremin

15 lines 489 B
/** * Generates a password * @param {Number} Length The length of the password characters * @returns {Promise<String>} */ module.exports = (Length) => { if (!Length) throw new TypeError("Length isn't specified") var length = Length, res = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789', value = ""; for (var i = 0, n = res.length; i < length; ++i) { value += res.charAt(Math.floor(Math.random() * n)); } return value; }