We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8545f2 commit fe1f48dCopy full SHA for fe1f48d
owasp-password-strength-test.js
@@ -1,6 +1,6 @@
1
/* globals define */
2
(function (root, factory) {
3
-
+
4
if (typeof define === 'function' && define.amd) {
5
define([], factory);
6
} else if (typeof exports === 'object') {
@@ -49,7 +49,7 @@
49
// enforce a maximum length
50
function(password) {
51
if (password.length > owasp.configs.maxLength) {
52
- return 'The password must be fewer than ' + owasp.configs.maxLength + ' characters.';
+ return 'The password must be at most ' + owasp.configs.maxLength + ' characters.';
53
}
54
},
55
0 commit comments