diff --git a/app.js b/app.js index 56d8ec7..1fb7098 100644 --- a/app.js +++ b/app.js @@ -141,10 +141,9 @@ app.listen(port, function() { function generateID() { // Generate a random 16-char hexadecimal ID - var output = ''; - for (var i = 0; i < 16; i++) { - output += '0123456789abcdef'.charAt(Math.floor(Math.random() * 16)); - } - - return output; -} \ No newline at end of file + var output = ''; + for (var i = 0; i < 16; i++) { + output += '0123456789abcdef'.charAt(Math.floor(Math.random() * 16)); + } + return output; +}