not really known
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
212 B

  1. var words = [];
  2. module.exports=
  3. {
  4. /**
  5. * Returns a random word
  6. * @returns {string}
  7. */
  8. getRandomWord : function()
  9. {
  10. return '';
  11. }
  12. };