/Turkish-Random-Word-Generator

Turkish language institution web site content based random word generator.

Primary LanguageJavaScriptMIT LicenseMIT

Random Turkish Word Generator

Turkish language institution web site content based random word generator.

let rwg = require('./rwg');

rwg.random((err, words) => {
    console.log(words);  // Returns 10 random words as array
     /*
    ['tabi',
    'nüfuz',
    'eğer',
    'indirgemek',
    'hâl',
    'doyulmayan',
    'mahiyet',
    'bilhassa',
    'mütehassıs',
    'iltica' ]
  */
    console.log(err);
    
});