removed most async funtions

This commit is contained in:
2024-01-23 15:48:05 +01:00
parent 23b873767f
commit ae41f81aaa
6 changed files with 62 additions and 28 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ class PasswordGenerator{
this.options = { ...defaultOptions, ...options };
}
Generate(){
async Generate(){
// Generate random password that complies with the options
const { minLength, maxLength, minLower, minUpper, minNum, minSpecial, specialChars } = this.options;