2016-05-28 01:28:50 -07:00
|
|
|
import words from './words.json';
|
|
|
|
|
|
|
|
function randomItem(arr) {
|
|
|
|
return arr[ Math.floor(Math.random() * arr.length) ];
|
|
|
|
}
|
|
|
|
|
2018-06-01 17:02:37 -05:00
|
|
|
export function randomQuote() {
|
|
|
|
return randomItem(words.motivationalQuotes);
|
|
|
|
}
|
|
|
|
|
2016-05-28 01:28:50 -07:00
|
|
|
export function randomPhrase() {
|
|
|
|
return randomItem(words.phrases);
|
|
|
|
}
|
|
|
|
|
|
|
|
export function randomVerb() {
|
|
|
|
return randomItem(words.verbs);
|
|
|
|
}
|
|
|
|
|
|
|
|
export function randomCompliment() {
|
|
|
|
return randomItem(words.compliments);
|
|
|
|
}
|