Loading lib/key_generators/dictionary.js +1 −1 Original line number Diff line number Diff line Loading @@ -24,7 +24,7 @@ var DictionaryGenerator = function(options) { DictionaryGenerator.prototype.createKey = function(keyLength) { var text = ''; for(var i = 0; i < keyLength; i++) text += this.dictionary[Math.floor(Math.random()*this.dictionary.length]; text += this.dictionary[Math.floor(Math.random()*this.dictionary.length)]; return text; }; Loading Loading
lib/key_generators/dictionary.js +1 −1 Original line number Diff line number Diff line Loading @@ -24,7 +24,7 @@ var DictionaryGenerator = function(options) { DictionaryGenerator.prototype.createKey = function(keyLength) { var text = ''; for(var i = 0; i < keyLength; i++) text += this.dictionary[Math.floor(Math.random()*this.dictionary.length]; text += this.dictionary[Math.floor(Math.random()*this.dictionary.length)]; return text; }; Loading