Skip to content

Commit

Permalink
Remove unnecessary getRandomElement call
Browse files Browse the repository at this point in the history
This probably was remnants from when I was testing the new intellisense
stuff. Whoops!
  • Loading branch information
evangipson committed Oct 25, 2016
1 parent 7020129 commit 227108f
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion js/tart.js
Original file line number Diff line number Diff line change
Expand Up @@ -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. */
Expand Down

0 comments on commit 227108f

Please sign in to comment.