From 227108f3ae29a169209d8fa31b83f12d5e506b04 Mon Sep 17 00:00:00 2001 From: Evan Gipson Date: Tue, 25 Oct 2016 01:16:12 -0500 Subject: [PATCH] Remove unnecessary getRandomElement call This probably was remnants from when I was testing the new intellisense stuff. Whoops! --- js/tart.js | 1 - 1 file changed, 1 deletion(-) diff --git a/js/tart.js b/js/tart.js index 72a997f..0aeaba7 100644 --- a/js/tart.js +++ b/js/tart.js @@ -65,7 +65,6 @@ let TART = (function() { function getRandomElement(...sourceArray) { return sourceArray[randomNum(sourceArray.length)]; } - getRandomElement() /** Will return a random string when invoked. * @param {number} stringLimit length of the return string, in characters. * @param {string} possible available characters for the return string. */