|
|
var words = [];
|
|
|
|
|
|
|
|
module.exports=
|
|
{
|
|
/**
|
|
* Returns a random word
|
|
* @returns {string}
|
|
*/
|
|
getRandomWord : function()
|
|
{
|
|
return '';
|
|
},
|
|
|
|
/**
|
|
* returns a specific amount of words -- unique
|
|
* @param num
|
|
* @returns {Array}
|
|
*/
|
|
getRandomWords : function(num)
|
|
{
|
|
return [];
|
|
}
|
|
};
|