UNPKG
gen-password
Version:
latest (1.0.0)
1.0.0
The plugin is for generting password
gen-password
/
index.js
4 lines
•
164 B
JavaScript
View Raw
1
2
3
4
module
.
exports
.
generate_password
=
function
(
password_length =
8
) {
var
password =
Math
.
random
().
toString
(
36
).
slice
(-password_length);
return
password; };