We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to be able to remove the test for a special character, how would I do this?
The text was updated successfully, but these errors were encountered:
In your config set minOptionalTestsToPass: 3
minOptionalTestsToPass: 3
and then validate using strong, not errors.
const owasp = require('owasp-password-strength-test'); owasp.config({ maxLength: 128, minLength: 8, minOptionalTestsToPass: 3 }); var passStrength = owasp.test('YourPasswordWithoutSpecial1'); if(passStrength.strong) { // Your password is good enough }else{ // Show errors console.log(passStrength.errors) }
Sorry, something went wrong.
No branches or pull requests
I want to be able to remove the test for a special character, how would I do this?
The text was updated successfully, but these errors were encountered: