We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a821b4 commit bcfb3f8Copy full SHA for bcfb3f8
1 file changed
ThreeRandomWords.html
@@ -81,7 +81,7 @@ <h2>Your New Password</h2>
81
return word ? word.charAt(0).toUpperCase() + word.slice(1).toLowerCase() : '';
82
}
83
84
- $.get('https://raw.githubusercontent.com/first20hours/google-10000-english/master/google-10000-english-no-swears.txt', function(passwordFile) {
+ $.get('https://raw.githubusercontent.com/first20hours/google-10000-english/master/20k.txt', function(passwordFile) {
85
var passwords = (passwordFile.split(/\s+/) // Ignore different line endings
86
.filter(word => word.length > 3 && word.length < 9) // One to three letter words are mostly rubbish. Too long is a pain to enter.
87
);
0 commit comments