Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 258 Bytes

File metadata and controls

16 lines (13 loc) · 258 Bytes

generator-password

generate passwords with this module

example:

const generator=require('passwordgenerator');
const passwordGenerator=new generator();
passwordGenerator.generate({
length:10,
numbers:true,
symbols:true,
ignoreSymbols:['(',')']
}