fixed issue of missing import

This commit is contained in:
2024-01-23 17:12:50 +01:00
parent a244eae837
commit 5e03a37f47
2 changed files with 3 additions and 2 deletions
+2 -2
View File
@@ -295,8 +295,8 @@ const randomPassword = passwordGenerator.Generate();
## Authors
- [kajvan](https://www.github.com/kajvans)
- [kajvan](https://gitea.quiztimes.nl/kajvans)
- [kajvans](https://www.github.com/kajvans)
- [kajvans](https://gitea.quiztimes.nl/kajvans)
## License
+1
View File
@@ -1,4 +1,5 @@
const bcrypt = require('bcrypt');
const PassPolicy = require('./passpolicy.js');
class PassCheck{
constructor(BcryptSaltRounds, PassPolicyOptions) {