A few style nit-picks

This commit is contained in:
John Crepezzi 2017-06-26 12:10:57 -04:00 committed by GitHub
parent d66bc9a6c4
commit 4599203bdf
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
var fs = require('fs')
var fs = require('fs');
var DictionaryGenerator = function(options) {
//Options
@ -9,7 +9,7 @@ var DictionaryGenerator = function(options) {
//Load dictionary
fs.readFile(options.path, 'utf8', (err,data) => {
if(err) throw err;
if (err) throw err;
this.dictionary = data.split(/[\n\r]+/);
});
};
@ -18,7 +18,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;
};