UNPKG

wondergirl

Version:

100 inspirational quotes for women by some of the strongest women in history.

9 lines (8 loc) 248 B
'use strict'; var quotes = require('./quotes.json'); module.exports = { getQuote: function() { var randomQuote = quotes[Math.floor(Math.random() * quotes.length)]; return '"' + randomQuote.quote.trim() + '" -' + randomQuote.author; } }