UNPKG

super-random-quotes

Version:

Generate a random motivational quote with author.

6 lines (5 loc) 181 B
const quote = require('./quotesCreator.js'); module.exports.getRandomQuote = function () { return quote.getRandomQuote().text + " ~ " + quote.getRandomQuote().author; };