@ankan2002/random-password-generator
v1.0.1
Published
Can generate a random password suggestion of a given length
Downloads
3
Readme
#Ceratain Rules to use the package
###Install and Require the package in the given manner:
const password = require('@ankan2002/random-password-generator');
###To run get the password it takes a parameter that defines the length of the password. Example is given below:
const pass = password(15);
console.log(pass);