This commit is contained in:
kajvan
2023-10-10 18:37:21 +02:00
parent f7e668c8fb
commit 7c739cb3fe
5 changed files with 396 additions and 54 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ class PasswordGenerator{
this.options = { ...defaultOptions, ...options };
}
async Generate(){
Generate(){
// Generate random password that complies with the options
const { minLength, maxLength, minLower, minUpper, minNum, minSpecial, specialChars } = this.options;