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.

25 lines
426 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. /**
  13. * returns a specific amount of words -- unique
  14. * @param num
  15. * @returns {Array}
  16. */
  17. getRandomWords : function(num)
  18. {
  19. return [];
  20. }
  21. };